summaryrefslogtreecommitdiffstats
path: root/package/sawman/0001-link-using-gcc-instead-of-ld.patch
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-09-02 00:01:11 +0200
committerPeter Korsgaard <peter@korsgaard.com>2015-09-10 13:57:01 +0200
commit11573f5a14d1c2726ce9623de3a5f118085a420f (patch)
tree848d2e11a285e845cc36dfcd6bafaf4aa9355c4a /package/sawman/0001-link-using-gcc-instead-of-ld.patch
parentae46e8f9e37c24b960015ef1522fedabb1dabd41 (diff)
downloadbuildroot-11573f5a14d1c2726ce9623de3a5f118085a420f.tar.gz
buildroot-11573f5a14d1c2726ce9623de3a5f118085a420f.zip
sawman: remove package
This commit removes the sawman package, since the corresponding functionality has been merged in DirectFB itself since 1.7.x. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/sawman/0001-link-using-gcc-instead-of-ld.patch')
-rw-r--r--package/sawman/0001-link-using-gcc-instead-of-ld.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/package/sawman/0001-link-using-gcc-instead-of-ld.patch b/package/sawman/0001-link-using-gcc-instead-of-ld.patch
deleted file mode 100644
index 02e802995c..0000000000
--- a/package/sawman/0001-link-using-gcc-instead-of-ld.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-sawman: Link using gcc instead of ld
-
-Using ld may cause a link failure due to using the default emulation
-linker which is configured when building the linker in binutils. Using
-gcc instead will pass the appropriate -m value because the compiler
-knows the ABI you are using.
-
-Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---- SaWMan-1.6.3/rules/libobject.make.orig 2013-12-17 15:54:22.137856874 +0000
-+++ SaWMan-1.6.3/rules/libobject.make 2013-12-17 15:54:44.233201909 +0000
-@@ -3,7 +3,7 @@
- if test -d $<.tmp; then rmdir $<.tmp; fi
- mkdir $<.tmp
- (cd $<.tmp && $(AR) x ../../$<)
-- $(LD) -o $@ -r $<.tmp/*.o
-+ $(CC) -nostdlib -o $@ -r $<.tmp/*.o
- rm -f $<.tmp/*.o && rmdir $<.tmp
-
- .PHONY: $(LTLIBRARIES:%.la=.libs/%.a)
OpenPOWER on IntegriCloud