1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-04 06:15:24 +00:00
freebsd-ports/net-mgmt/torrus/files/patch-perllib_Makefile.in
Pav Lucistnik 3827b68ca0 - Update to 1.0.9
PR:		ports/152116
Submitted by:	Corey Smith <corsmith@gmail.com> (maintainer)
2010-11-26 11:16:35 +00:00

28 lines
938 B
Plaintext

--- perllib/Makefile.in.orig 2010-10-28 18:49:34.000000000 +0000
+++ perllib/Makefile.in 2010-10-28 18:50:48.000000000 +0000
@@ -339,7 +339,7 @@
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(perllibdir)
- find * -type d ! -name CVS -print >list.tmp
+ find * -type d -print | grep -v /.svn >list.tmp
for d in `cat list.tmp`; do \
$(mkinstalldirs) $(DESTDIR)$(perllibdir)/$$d; done
find * \( -name '*.pm' \) -type f -print >list.tmp
@@ -348,13 +348,13 @@
rm -f list.tmp
uninstall-local:
- find * -type d ! -name CVS -print >list.tmp
+ find * -type d -print | grep -v /.svn >list.tmp
for d in `cat list.tmp`; do \
rm -r $(DESTDIR)$(perllibdir)/$$d; done
rm -f list.tmp
dist-hook:
- find * -type d ! -name CVS -print >list.tmp
+ find * -type d -print | grep -v /.svn >list.tmp
for d in `cat list.tmp`; do \
mkdir $(distdir)/$$d; done
find * \( -name '*.pm' -o -name '*.txt' \) -type f -print >list.tmp