diff options
author | John Marino <marino@FreeBSD.org> | 2013-12-24 21:28:45 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2013-12-24 21:28:45 +0000 |
commit | d0ba060e5532d42195cbbeb94bb513288f4719d2 (patch) | |
tree | d8e63577240733b12b5a7f0b0b128e404aa0aeeb /ftp/ftpproxy | |
parent | 95b017beedf906159d831eea761424d37375c2d2 (diff) | |
download | ports-d0ba060e5532d42195cbbeb94bb513288f4719d2.tar.gz ports-d0ba060e5532d42195cbbeb94bb513288f4719d2.zip |
Notes
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 |