ports/184616: ftp/ftpproxy: [PATCH] unbreak on F10 and head
John Marino
freebsd at marino.st
Mon Dec 9 00:20:01 UTC 2013
>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:
More information about the freebsd-ports-bugs
mailing list