diff options
author | Rob Landley <rob@landley.net> | 2016-07-05 19:36:00 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-07-05 19:36:00 -0500 |
commit | d620f77f21638d2e9142ebd523a781e831757251 (patch) | |
tree | 91d155c2fa10d5020ac85bf38bba4a7ab07e9295 /scripts | |
parent | ff0e8cb15c39d59b0530ac0e0a1243a510ae5c06 (diff) | |
download | toybox-d620f77f21638d2e9142ebd523a781e831757251.tar.gz |
Fix generated/make.sh. (Quotes in TOYBOX_VERSION need to wind up in
resulting macro.)
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/make.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/make.sh b/scripts/make.sh index 80d14849..07bf2ac8 100755 --- a/scripts/make.sh +++ b/scripts/make.sh @@ -82,11 +82,11 @@ genbuildsh() echo "#!/bin/sh" echo - echo "BUILD=\"$BUILD\"" + echo "BUILD='$BUILD'" echo - echo "FILES=\"$LIBFILES $TOYFILES\"" + echo "FILES='$LIBFILES $TOYFILES'" echo - echo "LINK=\"$LINK\"" + echo "LINK='$LINK'" echo echo echo '$BUILD $FILES $LINK' |