diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-06-21 16:28:34 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-06-21 16:28:34 +0000 |
commit | 0b46d42df00d497235dcd9a0ce151a080b066e9f (patch) | |
tree | 778dec654d55dd0512d3cc0d069f63d269178b54 | |
parent | fc2baf767c872bf2ae331f58515ed35f4d4839a9 (diff) | |
download | drakx-0b46d42df00d497235dcd9a0ce151a080b066e9f.tar drakx-0b46d42df00d497235dcd9a0ce151a080b066e9f.tar.gz drakx-0b46d42df00d497235dcd9a0ce151a080b066e9f.tar.bz2 drakx-0b46d42df00d497235dcd9a0ce151a080b066e9f.tar.xz drakx-0b46d42df00d497235dcd9a0ce151a080b066e9f.zip |
defaults to not spawn shell
-rw-r--r-- | mdk-stage1/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mdk-stage1/Makefile b/mdk-stage1/Makefile index f1369b26c..a27d829a9 100644 --- a/mdk-stage1/Makefile +++ b/mdk-stage1/Makefile @@ -43,7 +43,7 @@ top_dir = . include $(top_dir)/Makefile.common -DEFS = -DVERSION=\"$(VERSION)\" -DSPAWN_SHELL +DEFS = -DVERSION=\"$(VERSION)\" #-DSPAWN_SHELL COMPILE = $(CC) $(DEFS) $(CFLAGS) @@ -161,7 +161,7 @@ PCMCIA_DEFS = -DENABLE_PCMCIA endif -all: dirs .depend $(BINS) +all: dirs $(BINS) dirs: @for n in . $(DIRS); do \ @@ -225,7 +225,7 @@ tar-mkinitrd_helper: clean rm -rf mkinitrd_helper-subdir -.depend: $(ALLSRC) *.h +.depend: $(CPP) $(CFLAGS) -M $(ALLSRC) > .depend ifeq (.depend,$(wildcard .depend)) |