Skip to content
Snippets Groups Projects
Commit 07b0a1b1 authored by Peter Bortas's avatar Peter Bortas
Browse files

User is not necessarily hubbe.

Rev: NT/init_nt:1.29
parent bbc37a51
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
# Support local settings. # Support local settings.
INIT_NTRC=${INIT_NTRC-"$HOME/.init_ntrc"} INIT_NTRC=${INIT_NTRC-"$HOME/.init_ntrc"}
if [ -f "$INIT_NTRC" ]; then if [ -f "$INIT_NTRC" ]; then
echo Using rc-file $INIT_NTRC
. "$INIT_NTRC" . "$INIT_NTRC"
fi fi
...@@ -47,14 +48,19 @@ IA64SDK=${IA64SDK-'C:\ia64sdk17'} ...@@ -47,14 +48,19 @@ IA64SDK=${IA64SDK-'C:\ia64sdk17'}
case "/$CC" in case "/$CC" in
*/rntcl) */rntcl)
MSVC='j:\winshare\vc98' if [ "x$NOPATHS" = "yes" ]; then
local='j:\winshare\local' echo "I am Hubbe"
REMOTE_VARIABLES=" MSVC='j:\winshare\vc98'
local='j:\winshare\local'
REMOTE_VARIABLES="
path=$MSVC\\bin; path=$MSVC\\bin;
include=$MSVC\\Include;$local\\include include=$MSVC\\Include;$local\\include
lib=$MSVC\\Lib;$local\\lib lib=$MSVC\\Lib;$local\\lib
" "
export REMOTE_VARIABLES export REMOTE_VARIABLES
else
echo "We are not Hubbe."
fi
;; ;;
*/rntcl64) */rntcl64)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment