aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-05-30 19:09:40 +0000
committerEric Andersen <andersen@codepoet.org>2001-05-30 19:09:40 +0000
commitf12cc4ee68ec33a77576e582b48705730fcde359 (patch)
treede9a83f21ab09d6a0c6c02fb2ed1dcec771aa3fa
parent86f0167e399f6f9a201e3d5294dc7e0a8c78c585 (diff)
downloadbusybox-w32-f12cc4ee68ec33a77576e582b48705730fcde359.tar.gz
busybox-w32-f12cc4ee68ec33a77576e582b48705730fcde359.tar.bz2
busybox-w32-f12cc4ee68ec33a77576e582b48705730fcde359.zip
Make hush the default shell. Ensure the applets_list gets
the axe on a distclean.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 866fe5b46..16da9fd47 100644
--- a/Makefile
+++ b/Makefile
@@ -273,7 +273,7 @@ CFLAGS += $(CFLAGS_EXTRA)
273all: applet_source_list busybox busybox.links doc 273all: applet_source_list busybox busybox.links doc
274 274
275sh.c: 275sh.c:
276 @if [ ! -L sh.c ] ; then ln -s lash.c sh.c ; fi 276 @if [ ! -L sh.c ] ; then ln -s hush.c sh.c ; fi
277 277
278applet_source_list: busybox.sh Config.h sh.c 278applet_source_list: busybox.sh Config.h sh.c
279 (echo -n "APPLET_SOURCES := "; BB_SRC_DIR=$(BB_SRC_DIR) $(SHELL) $^) > $@ 279 (echo -n "APPLET_SOURCES := "; BB_SRC_DIR=$(BB_SRC_DIR) $(SHELL) $^) > $@
@@ -397,7 +397,7 @@ clean:
397 - find -name \*.o -exec rm -f {} \; 397 - find -name \*.o -exec rm -f {} \;
398 398
399distclean: clean 399distclean: clean
400 - rm -f busybox 400 - rm -f busybox applet_source_list
401 - cd tests && $(MAKE) distclean 401 - cd tests && $(MAKE) distclean
402 402
403install: install.sh busybox busybox.links 403install: install.sh busybox busybox.links