diff options
author | Philip Paeps <philip@FreeBSD.org> | 2005-02-22 08:49:35 +0000 |
---|---|---|
committer | Philip Paeps <philip@FreeBSD.org> | 2005-02-22 08:49:35 +0000 |
commit | 8056cd05e1bd00a3a5780643bafb253e8aa424fc (patch) | |
tree | b042586cdfa6900de5ce9465d940d4e49c587ed5 /irc/irssi/files | |
parent | Add a dependency on desktopfileutils now that we install a desktop file (diff) |
Prevent the creation of perllocal.pod to appease pointyhat.
Spotted by: pointyhat via kris
Approved by: vanilla (maintainer)
Diffstat (limited to 'irc/irssi/files')
-rw-r--r-- | irc/irssi/files/patch-perl-Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/irc/irssi/files/patch-perl-Makefile b/irc/irssi/files/patch-perl-Makefile new file mode 100644 index 000000000000..a6d4d95a0a93 --- /dev/null +++ b/irc/irssi/files/patch-perl-Makefile @@ -0,0 +1,22 @@ +--- src/perl/Makefile.in.orig Tue Feb 22 09:11:53 2005 ++++ src/perl/Makefile.in Tue Feb 22 09:12:11 2005 +@@ -467,7 +467,7 @@ + + install-exec-local: + for dir in $(perl_dirs); do \ +- cd $$dir && $(MAKE) install && cd ..; \ ++ cd $$dir && $(MAKE) pure_install && cd ..; \ + done + + clean-generic: +--- src/perl/Makefile.am.orig Tue Feb 22 09:12:25 2005 ++++ src/perl/Makefile.am Tue Feb 22 09:12:35 2005 +@@ -148,7 +148,7 @@ + + install-exec-local: + for dir in $(perl_dirs); do \ +- cd $$dir && $(MAKE) install && cd ..; \ ++ cd $$dir && $(MAKE) pure_install && cd ..; \ + done + + clean-generic: |