Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Dec 2013 00:10:47 GMT
From:      John Marino <freebsd@marino.st>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/184616: ftp/ftpproxy: [PATCH] unbreak on F10 and head
Message-ID:  <201312090010.rB90Al3V042737@oldred.freebsd.org>
Resent-Message-ID: <201312090020.rB90K1vO009272@freefall.freebsd.org>

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

>Number:         184616
>Category:       ports
>Synopsis:       ftp/ftpproxy: [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:20:01 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     John Marino
>Release:        
>Organization:
>Environment:
>Description:
This port does not build on FreeBSD 10 or head because the internal makefile hardcodes "make" when the port specifies gmake is needed.  As a result, bmake is used instead which fails on head.

Attached patch fixes build by using gmake as intended.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

Index: ftp/ftpproxy/files/patch-Makefile
===================================================================
--- ftp/ftpproxy/files/patch-Makefile	(revision 0)
+++ ftp/ftpproxy/files/patch-Makefile	(working copy)
@@ -0,0 +1,20 @@
+--- Makefile.orig	2004-07-30 12:49:27.000000000 +0000
++++ Makefile
+@@ -9,7 +9,7 @@ TARGETS =	ftp.proxy
+ 
+ 
+ all:	$(TARGETS)
+-	cd src; make all 
++	cd src; $(MAKE) all 
+ 
+ 
+ install:	all
+@@ -18,7 +18,7 @@ install:	all
+ 
+ 
+ ftp.proxy:
+-	cd src; make ftp.proxy 
++	cd src; $(MAKE) ftp.proxy 
+ 
+ 
+ tar:		clean

Property changes on: ftp/ftpproxy/files/patch-Makefile
___________________________________________________________________
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?201312090010.rB90Al3V042737>