diff options
author | marino <marino@FreeBSD.org> | 2013-12-25 05:28:45 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2013-12-25 05:28:45 +0800 |
commit | a9c14d1db1e4d253c7d0a0fd1ded4ea5da4fbb59 (patch) | |
tree | d8e63577240733b12b5a7f0b0b128e404aa0aeeb /ftp/ftpproxy | |
parent | 48a5b8a76ca0ee525aedf78cd2bfc6de7a1828f8 (diff) | |
download | freebsd-ports-gnome-a9c14d1db1e4d253c7d0a0fd1ded4ea5da4fbb59.tar.gz freebsd-ports-gnome-a9c14d1db1e4d253c7d0a0fd1ded4ea5da4fbb59.tar.zst freebsd-ports-gnome-a9c14d1db1e4d253c7d0a0fd1ded4ea5da4fbb59.zip |
ftp/ftpproxy: Unbreak on FreeBSD 10+
The breakage was caused by processing makefiles with bmake instead of the
specified gmake.
PR: ports/184616
Approved by: maintainer timeout
Diffstat (limited to 'ftp/ftpproxy')
-rw-r--r-- | ftp/ftpproxy/files/patch-Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ftp/ftpproxy/files/patch-Makefile b/ftp/ftpproxy/files/patch-Makefile new file mode 100644 index 000000000000..d59d84749c93 --- /dev/null +++ b/ftp/ftpproxy/files/patch-Makefile @@ -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 |