From: Michael Tremer Date: Sun, 12 Oct 2008 10:37:43 +0000 (+0200) Subject: Did some gcc tweaks to build tar. X-Git-Tag: v3.0-alpha1~556^2~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ffee50f99993583b68eee3efde8f17b27da38f85;p=ipfire-3.x.git Did some gcc tweaks to build tar. --- diff --git a/lfs/tar b/lfs/tar index aaf7b6144..d250e4ee8 100644 --- a/lfs/tar +++ b/lfs/tar @@ -61,8 +61,12 @@ ifeq "$(STAGE)" "toolchain" endif ifeq "$(STAGE)" "base" - cd $(DIR_APP) && ./configure --prefix=/usr --bindir=/bin --libexecdir=/usr/sbin - cd $(DIR_APP) && make $(PARALLELISMFLAGS) + cd $(DIR_APP) && CC="gcc -std=gnu99 -fgnu89-inline" \ + ./configure \ + --prefix=/usr \ + --bindir=/bin \ + --libexecdir=/usr/sbin + cd $(DIR_APP) && make $(PARALLELISMFLAGS) cd $(DIR_APP) && make install endif