diff options
| -rw-r--r-- | boot2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot2/Makefile b/boot2/Makefile index 76e9605..f2537ce 100644 --- a/boot2/Makefile +++ b/boot2/Makefile @@ -15,7 +15,7 @@ ASM_SOURCES=$(wildcard *.asm) all: $(STAGE2) $(MP) $(CONFIG): ../kernel/config.h - cat ../kernel/config.h | grep "^#define" | sed "s/#/%/" | sed "s/\/\/.*//" > $@ + cat ../kernel/config.h | grep "^#define" | sed -e "s/#/%/" -e "s/\/\/.*//" > $@ $(STAGE2): $(ASM_SOURCES) $(CONFIG) $(MP): $(ASM_SOURCES) |
