Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Dec 2013 21:35:54 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r337389 - head/sysutils/hdup/files
Message-ID:  <201312242135.rBOLZsAX084602@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Tue Dec 24 21:35:54 2013
New Revision: 337389
URL: http://svnweb.freebsd.org/changeset/ports/337389

Log:
  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

Added:
  head/sysutils/hdup/files/patch-Makefile.in   (contents, props changed)

Added: head/sysutils/hdup/files/patch-Makefile.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/hdup/files/patch-Makefile.in	Tue Dec 24 21:35:54 2013	(r337389)
@@ -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 )



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312242135.rBOLZsAX084602>