From e1b3206c11baa396edaf49bfb45a2a443717eaa4 Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Fri, 14 Nov 2014 14:16:13 +0100 Subject: fix sed --- boot2/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3