summaryrefslogtreecommitdiffstats
path: root/package/pv/pv-1.2.0-fixld.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/pv/pv-1.2.0-fixld.patch')
-rw-r--r--package/pv/pv-1.2.0-fixld.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/package/pv/pv-1.2.0-fixld.patch b/package/pv/pv-1.2.0-fixld.patch
deleted file mode 100644
index 9df279de5..000000000
--- a/package/pv/pv-1.2.0-fixld.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-[PATCH] fix linker variable
-
-The linker variable LD was always set to 'ld' instead of the value from
-the environment. This breaks any linking, especially when dealing with
-a cross-compiler toolchain.
-The fix takes the CC variable and changes the 'gcc' extension to 'ld'.
-
-Signed-off-by: Roeland Van Praet <roelvp@mind.be>
----
-diff -ruN a/autoconf/make/vars.mk b/autoconf/make/vars.mk
---- a/autoconf/make/vars.mk 2010-03-11 00:43:19.000000000 +0100
-+++ b/autoconf/make/vars.mk 2011-10-06 15:47:18.000000000 +0200
-@@ -30,7 +30,7 @@
- @SET_MAKE@
- SHELL = /bin/sh
- CC = @CC@
--LD = ld
-+LD = $(CC:gcc=ld)
- DO_GZIP = @DO_GZIP@
- INSTALL = @INSTALL@
- INSTALL_DATA = @INSTALL_DATA@