]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
Let sed use glibc's regex.
authorMichael Tremer <michael.tremer@ipfire.org>
Sun, 21 Dec 2008 11:57:25 +0000 (12:57 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sun, 21 Dec 2008 11:57:25 +0000 (12:57 +0100)
lfs/sed

diff --git a/lfs/sed b/lfs/sed
index c468ae80f6c1dc7f2fffd1f356338c24bbdbbd73..bb4852c4905209577643d61988701e15890ce764 100644 (file)
--- a/lfs/sed
+++ b/lfs/sed
@@ -58,11 +58,17 @@ ifeq "$(STAGE)" "toolchain"
        cd $(DIR_APP) && \
                ./configure \
                        $(CONFIGURE_ARCH) \
-                       --prefix=$(TOOLS_DIR)
+                       --prefix=$(TOOLS_DIR) \
+                       --without-included-regex
 endif
 
 ifeq "$(STAGE)" "base"
-       cd $(DIR_APP) && ./configure --prefix=/usr --bindir=/bin --enable-html
+       cd $(DIR_APP) && \
+               ./configure \
+                       --prefix=/usr \
+                       --bindir=/bin \
+                       --enable-html \
+                       --without-included-regex
 endif
 
        cd $(DIR_APP) && make $(PARALLELISMFLAGS)