diff options
author | kris <kris@FreeBSD.org> | 2003-10-23 08:01:04 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-10-23 08:01:04 +0800 |
commit | 47c45847ec49bb71a4cb984d65a7afb6bb8f75ee (patch) | |
tree | 93481e0fdaf90fec40d0da8c27d85cf83c7056e8 /security | |
parent | e05325eb70c801164f035d122c235e6ce8e60686 (diff) | |
download | freebsd-ports-gnome-47c45847ec49bb71a4cb984d65a7afb6bb8f75ee.tar.gz freebsd-ports-gnome-47c45847ec49bb71a4cb984d65a7afb6bb8f75ee.tar.zst freebsd-ports-gnome-47c45847ec49bb71a4cb984d65a7afb6bb8f75ee.zip |
Respect CC and CFLAGS
Diffstat (limited to 'security')
-rw-r--r-- | security/autossh/files/patch-Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/security/autossh/files/patch-Makefile b/security/autossh/files/patch-Makefile new file mode 100644 index 000000000000..e4a8ffeb22d3 --- /dev/null +++ b/security/autossh/files/patch-Makefile @@ -0,0 +1,13 @@ +--- Makefile.bsd.bak Wed Oct 22 16:48:40 2003 ++++ Makefile.bsd Wed Oct 22 16:49:17 2003 +@@ -9,7 +9,9 @@ + SSH= /usr/bin/ssh + PREFIX?= /usr/local + +-CFLAGS= -Wall -pedantic -D"SSH_PATH=\"$(SSH)\""\ ++CC?= cc ++CFLAGS?= -O -pipe ++CFLAGS+= -D"SSH_PATH=\"$(SSH)\""\ + -D"VER=\"$(VER)\"" + OFILES= autossh.o + LIBS= |