Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Dec 2013 00:26:03 GMT
From:      John Marino <freebsd@marino.st>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/184617: sysutils/hdup: [PATCH] unbreak on F10 and head
Message-ID:  <201312090026.rB90Q3m4040328@oldred.freebsd.org>
Resent-Message-ID: <201312090030.rB90U3RA014999@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         184617
>Category:       ports
>Synopsis:       sysutils/hdup: [PATCH] unbreak on F10 and head
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Dec 09 00:30:02 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     John Marino
>Release:        
>Organization:
>Environment:
>Description:
The internal makefile has hardcoded "make" when the port specified gmake is needed.  As a result, bmake is used instead of gmake on FreeBSD 10 and head (unsuccessfully).

The attached patch unbreaks the build on these platforms.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

Index: sysutils/hdup/files/patch-Makefile.in
===================================================================
--- sysutils/hdup/files/patch-Makefile.in	(revision 0)
+++ sysutils/hdup/files/patch-Makefile.in	(working copy)
@@ -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 )

Property changes on: sysutils/hdup/files/patch-Makefile.in
___________________________________________________________________
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: fbsd:nokeywords
## -0,0 +1 ##
+yes
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property


>Release-Note:
>Audit-Trail:
>Unformatted:



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