[Swift-commit] r2286 - trunk/libexec
noreply at svn.ci.uchicago.edu
noreply at svn.ci.uchicago.edu
Fri Oct 10 05:15:05 CDT 2008
Author: benc
Date: 2008-10-10 05:15:05 -0500 (Fri, 10 Oct 2008)
New Revision: 2286
Modified:
trunk/libexec/wrapper.sh
Log:
off-by-one error, introduced in r2226. this was breaking things in the case of tguc + coasters + gram4 (but not gram2).
Modified: trunk/libexec/wrapper.sh
===================================================================
--- trunk/libexec/wrapper.sh 2008-10-07 14:55:43 UTC (rev 2285)
+++ trunk/libexec/wrapper.sh 2008-10-10 10:15:05 UTC (rev 2286)
@@ -163,7 +163,7 @@
export PATH=$PATHPREFIX:$PATH
fi
-if [ "X${EXEC:1:1}" != "X/" ] ; then
+if [ "X${EXEC:0:1}" != "X/" ] ; then
export EXEC=$(which $EXEC)
fi
More information about the Swift-commit
mailing list