diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-06-16 01:07:24 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-06-16 01:07:24 +0000 |
commit | cbefdaf8a531b95fdf2e7b1c0a6744818410330d (patch) | |
tree | ef67b6aea145d095b2810854684f02f90cd3b5c5 /devel/makeplus/files/patch-dist.mk | |
parent | Add an entry on needing to run firefox as root before running it as a normal (diff) |
Fix build with bsdtar:
* Don't explicitly check for gnu tar, recognize bsdtar too
* Don't rely on gnutar-specific behaviour
Notes
Notes:
svn path=/head/; revision=111561
Diffstat (limited to 'devel/makeplus/files/patch-dist.mk')
-rw-r--r-- | devel/makeplus/files/patch-dist.mk | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/devel/makeplus/files/patch-dist.mk b/devel/makeplus/files/patch-dist.mk new file mode 100644 index 000000000000..a7e74326cfc2 --- /dev/null +++ b/devel/makeplus/files/patch-dist.mk @@ -0,0 +1,13 @@ +--- dist.mk.orig Sat Mar 1 06:20:47 2003 ++++ dist.mk Mon Jun 14 23:17:43 2004 +@@ -35,7 +35,9 @@ + rm -rf $(PACKAGE)-$(VERSION) + rm -f $(MP_SRC_DIST) + mkdir $(PACKAGE)-$(VERSION) +- tar -cf - -X mp-dist.ex $(EXTRA_DIST) -C .. . | \ ++ tar -cf - -X mp-dist.ex $(EXTRA_DIST) | \ ++ tar -xf - -C $(PACKAGE)-$(VERSION) ++ tar -cf - -X mp-dist.ex -C .. . | \ + tar -xf - -C $(PACKAGE)-$(VERSION) + if [ -n "$(MP_BUNDLE)" -a -r "$(MAKEPLUS_HOME)/makeplus.tar.gz" ]; \ + then \ |