summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-11-14 14:16:13 +0100
committerMichal Idziorek <m.i@gmx.at>2014-11-14 14:16:13 +0100
commite1b3206c11baa396edaf49bfb45a2a443717eaa4 (patch)
tree45bffc150e23e610999b2fb3729c3804b5c11bdb
parentcef5bfb8913d69c2d3367ade93c29f5e7f283f45 (diff)
fix sed
-rw-r--r--boot2/Makefile2
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)