summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorkhorben <khorben@pkgsrc.org>2017-11-16 15:14:54 +0000
committerkhorben <khorben@pkgsrc.org>2017-11-16 15:14:54 +0000
commit6b71357d87f0ab7e1569f212008e741ee8d8db31 (patch)
tree4f6eeff1085365aca86866e61939f154647dffd3 /misc
parent71fbdf12dbadbb34f81389223abbd6af63ae4f58 (diff)
downloadpkgsrc-6b71357d87f0ab7e1569f212008e741ee8d8db31.tar.gz
Remove useless patch
This modification to the Makefile is no longer necessary since the custom CFLAGS and LDFLAGS are now passed explicitly, instead of through the environment (which did not work for me). NFC.
Diffstat (limited to 'misc')
-rw-r--r--misc/rhash/distinfo3
-rw-r--r--misc/rhash/patches/patch-Makefile17
2 files changed, 1 insertions, 19 deletions
diff --git a/misc/rhash/distinfo b/misc/rhash/distinfo
index 807fc207df3..8bc554a010e 100644
--- a/misc/rhash/distinfo
+++ b/misc/rhash/distinfo
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.8 2017/08/15 08:37:47 adam Exp $
+$NetBSD: distinfo,v 1.9 2017/11/16 15:14:54 khorben Exp $
SHA1 (rhash-1.3.5.tar.gz) = 990c9a0135afe48dee4ce1dbf83578e44735f302
RMD160 (rhash-1.3.5.tar.gz) = 38f840f8745d3183228d6ca0a9be3036f67f4768
SHA512 (rhash-1.3.5.tar.gz) = e8450aab0c16bfb975bf4aeee218740fb4d86d5514e426b70c3edb84e4d63865cd4051939aa95c24a87a78baaedc49e40bb509b2610e89ca3745930808b3ef6c
Size (rhash-1.3.5.tar.gz) = 316867 bytes
-SHA1 (patch-Makefile) = 04a890dcfae086b2984f294833eca300ce6b8128
SHA1 (patch-librhash_byte__order.h) = 92360ac37b4c6e56f6bdbb371ecc0a21a6ea71bd
diff --git a/misc/rhash/patches/patch-Makefile b/misc/rhash/patches/patch-Makefile
deleted file mode 100644
index 3618e332d6f..00000000000
--- a/misc/rhash/patches/patch-Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-Makefile,v 1.1 2017/07/06 13:04:28 wiz Exp $
-
-Use pkgsrc CFLAGS and LDFLAGS.
-
---- Makefile.orig 2016-11-06 20:12:16.000000000 +0000
-+++ Makefile 2017-07-06 13:01:57.925655166 +0000
-@@ -8,8 +8,8 @@
- # using OPTFLAGS/OPTLDFLAGS for compatibilty with old scripts using this makefile
- OPTFLAGS = -O2 -DNDEBUG -fomit-frame-pointer -ffunction-sections -fdata-sections
- OPTLDFLAGS =
--CFLAGS = $(OPTFLAGS)
--LDFLAGS = $(OPTLDFLAGS)
-+CFLAGS += $(OPTFLAGS)
-+LDFLAGS += $(OPTLDFLAGS)
- ADDCFLAGS =
- ADDLDFLAGS =
- ALLCFLAGS = -pipe $(CFLAGS) $(ADDCFLAGS) \