diff options
author | wiz <wiz@pkgsrc.org> | 2004-08-29 19:46:45 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-08-29 19:46:45 +0000 |
commit | 79c596a6f86bfb380c34088bf20a464f97d5d0ee (patch) | |
tree | e46978f4929589f97fcfdc186654477b71e5cfe4 /net/torrentutils/patches | |
parent | 31e586ce5c8db162d138286b20aa43bc93f85cbd (diff) | |
download | pkgsrc-79c596a6f86bfb380c34088bf20a464f97d5d0ee.tar.gz |
Fix installation to make less warnings, and make defrag use
bash, since it uses lots of bash features. Addresses PR 26799
by Simon Hitzemann.
Bump PKGREVISION for bash dependency.
Diffstat (limited to 'net/torrentutils/patches')
-rw-r--r-- | net/torrentutils/patches/patch-aa | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/net/torrentutils/patches/patch-aa b/net/torrentutils/patches/patch-aa index 4f91d2afef6..28ba6f2bab5 100644 --- a/net/torrentutils/patches/patch-aa +++ b/net/torrentutils/patches/patch-aa @@ -1,6 +1,6 @@ -$NetBSD: patch-aa,v 1.1.1.1 2004/03/04 15:47:34 wiz Exp $ +$NetBSD: patch-aa,v 1.2 2004/08/29 19:46:45 wiz Exp $ ---- Makefile.orig Sun Oct 12 14:13:16 2003 +--- Makefile.orig 2003-10-12 14:13:16.000000000 +0200 +++ Makefile @@ -1,9 +1,9 @@ # Root of installation tree @@ -14,8 +14,12 @@ $NetBSD: patch-aa,v 1.1.1.1 2004/03/04 15:47:34 wiz Exp $ # Path to Midnight Commander extfs MCEXTFSDIR = $(PREFIX)/share/mc/extfs -@@ -44,19 +44,10 @@ torrentutils.spec: torrentutils.spec.in - if [[ "$@" != *.spec ]]; then chmod a+x $@; fi +@@ -41,22 +41,13 @@ torrentutils.spec: torrentutils.spec.in + cat $^ | sed "s,@VERSION@,$(VERSION),; \ + s,@PACKAGE@,$(PACKAGE),; \ + s,@AUTHORS@,$(AUTHORS)," > $@ +- if [[ "$@" != *.spec ]]; then chmod a+x $@; fi ++ if [ "$@" != *.spec ]; then chmod a+x $@; fi install: all - install -d $(BINDIR) $(MANDIR)/man1 |