aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2016-07-05 19:36:00 -0500
committerRob Landley <rob@landley.net>2016-07-05 19:36:00 -0500
commitd620f77f21638d2e9142ebd523a781e831757251 (patch)
tree91d155c2fa10d5020ac85bf38bba4a7ab07e9295 /scripts
parentff0e8cb15c39d59b0530ac0e0a1243a510ae5c06 (diff)
downloadtoybox-d620f77f21638d2e9142ebd523a781e831757251.tar.gz
Fix generated/make.sh. (Quotes in TOYBOX_VERSION need to wind up in
resulting macro.)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/make.sh6
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'