]> granicus.if.org Git - handbrake/commitdiff
make: Fix typo in xcodemake.
authorBradley Sepos <bradley@bradleysepos.com>
Mon, 23 Sep 2019 08:15:57 +0000 (04:15 -0400)
committerBradley Sepos <bradley@bradleysepos.com>
Mon, 23 Sep 2019 08:15:57 +0000 (04:15 -0400)
Wrong slice index resulted in first / being stripped.

make/xcodemake

index 3ea3d02ec8a12aeadaaa11953cabffc7211bf5fc..7eae2804caad926a5daf23bd6774687ac08e07d2 100755 (executable)
@@ -125,7 +125,7 @@ if [ -n "$reconfigure" ]; then
         fi
     done
     PATH="${PATH}${APPLE_PATH}"
-    export PATH="${PATH:2}"
+    export PATH="${PATH:1}"
     echo "Unclobbering PATH:"
     echo "    export PATH=\"${PATH}\""