summaryrefslogtreecommitdiffstats
path: root/package/pv
diff options
context:
space:
mode:
authorJerzy Grzegorek <jerzy.grzegorek@trzebnica.net>2013-06-26 21:50:28 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2013-06-27 11:24:16 +0200
commit6b7e53d3616bcceb6c298d954b811e82d30481e6 (patch)
tree26a59597203c9ebb27c444b2a102cb4e619d57a7 /package/pv
parenta1f483b2c3efe483a058c34ff2b68335f98af3bc (diff)
downloadbuildroot-novena-6b7e53d3616bcceb6c298d954b811e82d30481e6.tar.gz
buildroot-novena-6b7e53d3616bcceb6c298d954b811e82d30481e6.zip
pv: bump to version 1.4.6
[Peter: drop patch and instead pass LD= on the make cmdline] Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/pv')
-rw-r--r--package/pv/pv-1.2.0-fixld.patch21
-rw-r--r--package/pv/pv.mk5
2 files changed, 3 insertions, 23 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@
diff --git a/package/pv/pv.mk b/package/pv/pv.mk
index 1aa95f6b6..261f2139c 100644
--- a/package/pv/pv.mk
+++ b/package/pv/pv.mk
@@ -4,8 +4,9 @@
#
################################################################################
-PV_VERSION = 1.2.0
+PV_VERSION = 1.4.6
PV_SOURCE = pv-$(PV_VERSION).tar.bz2
-PV_SITE = http://pipeviewer.googlecode.com/files
+PV_SITE = http://www.ivarch.com/programs/sources
+PV_MAKE_OPT = LD=$(TARGET_LD) # otherwise 'ld' is used
$(eval $(autotools-package))