Skip to content

Commit

Permalink
Fix definition of CLASSPATH in GNUstep.{sh,csh}, which was constructed
Browse files Browse the repository at this point in the history
backward.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@32969 72102866-910b-0410-8b05-ffd578937521
  • Loading branch information
wlux committed May 3, 2011
1 parent 10890dd commit 2de6c15
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2011-05-03 Wolfgang Lux <[email protected]>

* GNUstep.sh.in:
* GNUstep.csh.in: Fix definition of CLASSPATH, which was
constructed backward.

2011-04-30 Wolfgang Lux <[email protected]>

* Instance/library.make:
Expand Down
2 changes: 1 addition & 1 deletion GNUstep.csh.in
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ foreach dir ( `/bin/sh -c 'IFS=:; for i in '"${GNUSTEP_LIBRARY_PATHLIST}"'; do e
setenv CLASSPATH "${path_fragment}"
else if ( { (echo ":${CLASSPATH}:"\
|grep -v ":${path_fragment}:" >/dev/null) } ) then
setenv CLASSPATH "${CLASSPATH}:${path_fragment}"
setenv CLASSPATH "${path_fragment}:${CLASSPATH}"
endif

set path_fragment="${dir}/Libraries/Guile"
Expand Down
2 changes: 1 addition & 1 deletion GNUstep.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ for dir in $GNUSTEP_LIBRARY_PATHLIST; do
else
if ( echo ":${CLASSPATH}:"\
|grep -v ":${path_fragment}:" >/dev/null ); then
CLASSPATH="$CLASSPATH:$path_fragment"
CLASSPATH="$path_fragment:$CLASSPATH"
fi
fi

Expand Down

0 comments on commit 2de6c15

Please sign in to comment.