Control-P T for title.
[profile.git] / .profile.d / PATH.bashrc
index a7d4420..1a271aa 100644 (file)
@@ -30,10 +30,12 @@ function makepath() {
   # Read them.
   path=
   for dir in $(cat "$DIR/$dirs"); do
+    dir=$(eval echo "$dir")
     [ -d "$dir" ] || continue
 
     path="$path:$dir"
   done
+  unset dir
 
   # Sanitise path.
   path=${path#:}
@@ -49,8 +51,8 @@ makepath PATH bindirs
 makepath C_INCLUDE_PATH incdirs
 copypath CPLUS_INCLUDE_PATH C_INCLUDE_PATH
 makepath LD_LIBRARY_PATH libdirs
-copypath LD_RUN_PATH LD_LIBRARY_PATH
+copypath LD_RUN_PATH PATH
 makepath MANPATH mandirs
 makepath PKG_CONFIG_PATH pkgdirs
 
-unset sedscr makepath copypath
+unset dirs copypath makepath newpath