diff options
author | Eric Andersen | 2001-05-30 19:09:40 +0000 |
---|---|---|
committer | Eric Andersen | 2001-05-30 19:09:40 +0000 |
commit | f12cc4ee68ec33a77576e582b48705730fcde359 (patch) | |
tree | de9a83f21ab09d6a0c6c02fb2ed1dcec771aa3fa | |
parent | 86f0167e399f6f9a201e3d5294dc7e0a8c78c585 (diff) | |
download | busybox-f12cc4ee68ec33a77576e582b48705730fcde359.zip busybox-f12cc4ee68ec33a77576e582b48705730fcde359.tar.gz |
Make hush the default shell. Ensure the applets_list gets
the axe on a distclean.
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -273,7 +273,7 @@ CFLAGS += $(CFLAGS_EXTRA) all: applet_source_list busybox busybox.links doc sh.c: - @if [ ! -L sh.c ] ; then ln -s lash.c sh.c ; fi + @if [ ! -L sh.c ] ; then ln -s hush.c sh.c ; fi applet_source_list: busybox.sh Config.h sh.c (echo -n "APPLET_SOURCES := "; BB_SRC_DIR=$(BB_SRC_DIR) $(SHELL) $^) > $@ @@ -397,7 +397,7 @@ clean: - find -name \*.o -exec rm -f {} \; distclean: clean - - rm -f busybox + - rm -f busybox applet_source_list - cd tests && $(MAKE) distclean install: install.sh busybox busybox.links |