svn path=/nixpkgs/branches/stdenv-updates-merge/; revision=10840

This commit is contained in:
Eelco Dolstra 2008-02-23 06:05:44 +00:00
parent 7d4bcaece1
commit 0ca9f88ebc
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ makeWrapper() {
wrapper="$ghc_support/$wrapperName" wrapper="$ghc_support/$wrapperName"
shift #the other arguments are passed to the source app shift #the other arguments are passed to the source app
echo '#!'"$SHELL" > "$wrapper" echo '#!'"$SHELL" > "$wrapper"
echo "exec \"$ghc/bin/$wrapperName\" $@" '"$@"' > "$wrapper" echo "exec \"@ghc@/bin/$wrapperName\" $@" '"$@"' > "$wrapper"
chmod +x "$wrapper" chmod +x "$wrapper"
} }