summaryrefslogtreecommitdiffstats
path: root/package/dash/dash-0.5.5.1-no-config.h-for-helpers.patch
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2011-10-15 00:07:23 -0300
committerPeter Korsgaard <jacmet@sunsite.dk>2011-10-15 23:06:09 +0200
commit6c4b16f06298698b227a2bce1cf8de9b160f0007 (patch)
tree4ae20595bb7b10ea618036639c9e0178e16da297 /package/dash/dash-0.5.5.1-no-config.h-for-helpers.patch
parenta872ee462e3ec9c601a8a06aefb00234b6ed61dc (diff)
downloadbuildroot-novena-6c4b16f06298698b227a2bce1cf8de9b160f0007.tar.gz
buildroot-novena-6c4b16f06298698b227a2bce1cf8de9b160f0007.zip
dash: bump to version 0.5.7-2 and style cleanup
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/dash/dash-0.5.5.1-no-config.h-for-helpers.patch')
-rw-r--r--package/dash/dash-0.5.5.1-no-config.h-for-helpers.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/package/dash/dash-0.5.5.1-no-config.h-for-helpers.patch b/package/dash/dash-0.5.5.1-no-config.h-for-helpers.patch
deleted file mode 100644
index 9fd449c41..000000000
--- a/package/dash/dash-0.5.5.1-no-config.h-for-helpers.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-[PATCH] Don't include config.h when building helpers using the native compiler
-
-config.h contains settings for the cross compiler (most importantly
-32/64bit versions of functions), so don't include it when calling the
-native compiler to build the helpers.
-
-Otherwise we get build errors like:
-
-/usr/bin/gcc -include ../config.h -DBSD=1 -DSHELL -DIFS_BROKEN -g -O2 -Wall -o mkinit mkinit.c
-In file included from /usr/include/sys/stat.h:107,
- from /usr/include/fcntl.h:38,
- from mkinit.c:50:
-/usr/include/bits/stat.h:117: error: redefinition of ‘struct stat’
-In file included from /usr/include/fcntl.h:38,
- from mkinit.c:50:
-/usr/include/sys/stat.h:504: error: redefinition of ‘stat’
-/usr/include/sys/stat.h:455: note: previous definition of ‘stat’ was here
-
-Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
----
- src/Makefile.in | 1 -
- 1 file changed, 1 deletion(-)
-
-Index: dash-0.5.5.1/src/Makefile.in
-===================================================================
---- dash-0.5.5.1.orig/src/Makefile.in
-+++ dash-0.5.5.1/src/Makefile.in
-@@ -165,7 +165,6 @@ COMMON_CPPFLAGS = \
- AM_CFLAGS = $(COMMON_CFLAGS)
- AM_CPPFLAGS = $(COMMON_CPPFLAGS)
- AM_CFLAGS_FOR_BUILD = -g -O2 $(COMMON_CFLAGS)
--AM_CPPFLAGS_FOR_BUILD = $(COMMON_CPPFLAGS)
- COMPILE_FOR_BUILD = \
- $(CC_FOR_BUILD) $(AM_CPPFLAGS_FOR_BUILD) $(CPPFLAGS_FOR_BUILD) \
- $(AM_CFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD)