diff options
author | marino <marino@FreeBSD.org> | 2013-12-25 05:35:54 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2013-12-25 05:35:54 +0800 |
commit | 267c60b0021e5951199ac59ba113c91489ae71dd (patch) | |
tree | ae13bde58a2daffda8b4c36544883bfd3a4125f5 /sysutils | |
parent | cfad6a35d91cb6609ea4f60e4bf84c62cf67a034 (diff) | |
download | freebsd-ports-gnome-267c60b0021e5951199ac59ba113c91489ae71dd.tar.gz freebsd-ports-gnome-267c60b0021e5951199ac59ba113c91489ae71dd.tar.zst freebsd-ports-gnome-267c60b0021e5951199ac59ba113c91489ae71dd.zip |
sysutils/hdup: Unbreak on FreeBSD 10+
The breakage was caused by processing makefiles with bmake instead of the
specified gmake.
PR: ports/184617
Approved by: maintainer timeout
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/hdup/files/patch-Makefile.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sysutils/hdup/files/patch-Makefile.in b/sysutils/hdup/files/patch-Makefile.in new file mode 100644 index 000000000000..f5061d193e68 --- /dev/null +++ b/sysutils/hdup/files/patch-Makefile.in @@ -0,0 +1,12 @@ +--- Makefile.in.orig 2005-12-09 19:19:50.000000000 +0000 ++++ Makefile.in +@@ -32,7 +32,7 @@ docclean: + @echo "done" + + uninstall: +- @(cd src ; make uninstall ) ++ @(cd src ; $(MAKE) uninstall ) + + install: +- @(cd src ; make install ) ++ @(cd src ; $(MAKE) install ) |