diff options
author | Ron Yorston <rmy@pobox.com> | 2023-06-08 08:10:21 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2023-06-08 08:10:21 +0100 |
commit | fd348a7c819f8f4fe010b0c2004cf5454558380c (patch) | |
tree | 086ca315ff7192301f195ba725e31e2a6a455a91 /miscutils | |
parent | 3b23992e10a89d54e29bd521cd1d0ced4003a053 (diff) | |
download | busybox-w32-fd348a7c819f8f4fe010b0c2004cf5454558380c.tar.gz busybox-w32-fd348a7c819f8f4fe010b0c2004cf5454558380c.tar.bz2 busybox-w32-fd348a7c819f8f4fe010b0c2004cf5454558380c.zip |
make: code shrink
Saves 8 bytes in the 32-bit build.
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/make.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/make.c b/miscutils/make.c index d5e7a9516..a152824eb 100644 --- a/miscutils/make.c +++ b/miscutils/make.c | |||
@@ -2813,7 +2813,7 @@ int make_main(int argc UNUSED_PARAM, char **argv) | |||
2813 | // Read built-in rules | 2813 | // Read built-in rules |
2814 | input(NULL, 0); | 2814 | input(NULL, 0); |
2815 | 2815 | ||
2816 | setmacro("SHELL", "/bin/sh", 4); | 2816 | setmacro("SHELL", DEFAULT_SHELL, 4); |
2817 | setmacro("MAKE", path, 4); | 2817 | setmacro("MAKE", path, 4); |
2818 | free((void *)newpath); | 2818 | free((void *)newpath); |
2819 | 2819 | ||