updated to remove some msys refs.
[feisty_meow.git] / scripts / core / variables.sh
index 5c782d7fe2e84b70cd7e69adc53711b56c0a6de3..c339ca007dc8c4cdb0b8ae1c8b703cfff6b11fa8 100644 (file)
@@ -169,10 +169,12 @@ function initialize_build_variables()
     export BINDIR=$FEISTY_MEOW_DIR/production/binaries
 
     # add binaries created within build to the path.
-    export PATH="$(dos_to_msys_path $BUILD_TOP/build/bin):$PATH"
+#    export PATH="$(dos_to_msys_path $BUILD_TOP/build/bin):$PATH"
+    export PATH="$BUILD_TOP/build/bin:$PATH"
 
     # Shared libraries are located via this variable.
-    export LD_LIBRARY_PATH="$(dos_to_msys_path $LD_LIBRARY_PATH):$(dos_to_msys_path $BINDIR)"
+#    export LD_LIBRARY_PATH="$(dos_to_msys_path $LD_LIBRARY_PATH):$(dos_to_msys_path $BINDIR)"
+    export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$BINDIR"
   fi
 }
 
@@ -207,7 +209,8 @@ done
 
 # set the path for locating applications.  this is done after any
 # potential overrides from the user.
-export PATH="$(dos_to_msys_path $BINDIR):$(dos_to_msys_path $FEISTY_MEOW_GENERATED):$PATH:/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/lib:/usr/games:/usr/bin:."
+#export PATH="$(dos_to_msys_path $BINDIR):$(dos_to_msys_path $FEISTY_MEOW_GENERATED):$PATH:/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/lib:/usr/games:/usr/bin:."
+export PATH="$BINDIR:$FEISTY_MEOW_GENERATED:$PATH:/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/lib:/usr/games:/usr/bin:."
 
 ##############