mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-08 03:44:13 -04:00
22 lines
655 B
Plaintext
22 lines
655 B
Plaintext
$NetBSD: patch-ad,v 1.3 2011/12/16 12:54:41 drochner Exp $
|
|
|
|
don't install nettle files to avoid conflict with pkgsrc/nettle
|
|
|
|
--- src/nettle/Makefile.in.orig 2007-09-05 18:38:24.000000000 +0000
|
|
+++ src/nettle/Makefile.in
|
|
@@ -24,11 +24,13 @@ TARGETS = aesdata$(EXEEXT) desdata$(EXEE
|
|
|
|
DOCTARGETS = nettle.info nettle.html nettle.pdf
|
|
|
|
-all check install uninstall:
|
|
+all check uninstall:
|
|
$(MAKE) $@-here
|
|
set -e; for d in $(SUBDIRS); do \
|
|
echo "Making $@ in $$d" ; (cd $$d && $(MAKE) $@); done
|
|
|
|
+install:
|
|
+
|
|
clean distclean mostlyclean maintainer-clean:
|
|
set -e; for d in $(SUBDIRS); do \
|
|
echo "Making $@ in $$d" ; (cd $$d && $(MAKE) $@); done
|