diff options
author | miwi <miwi@FreeBSD.org> | 2012-04-11 11:34:16 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2012-04-11 11:34:16 +0800 |
commit | 77a46114862249f75403b2c3b806b0dbb274f247 (patch) | |
tree | 067ac196c1e925164ba6b3cdaee43f7e4278cec5 /ftp | |
parent | 35e4a8401f8ae3ce04fff3e65129be9744e2e6c6 (diff) | |
download | freebsd-ports-gnome-77a46114862249f75403b2c3b806b0dbb274f247.tar.gz freebsd-ports-gnome-77a46114862249f75403b2c3b806b0dbb274f247.tar.zst freebsd-ports-gnome-77a46114862249f75403b2c3b806b0dbb274f247.zip |
- Respect STRIP/LDFLAGS
PR: 162920
Submitted by: Jan Beich (jbeich@tormail.net)
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/twoftpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ftp/twoftpd/Makefile b/ftp/twoftpd/Makefile index fd3f161d19b9..5d89f9d7ff11 100644 --- a/ftp/twoftpd/Makefile +++ b/ftp/twoftpd/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= cvm-v2client.2:${PORTSDIR}/security/cvm CFLAGS+= -I${LOCALBASE}/include #-I${LOCALBASE}/include/bglibs -LDFLAGS+= -s -L${LOCALBASE}/lib +LDFLAGS+= -L${LOCALBASE}/lib BGLIBS_LIB= ${LOCALBASE}/lib/bglibs BGLIBS_INCLUDE= ${LOCALBASE}/include/bglibs @@ -33,7 +33,7 @@ do-configure: ${ECHO_CMD} "${PREFIX}/bin" > ${WRKSRC}/conf-bin ${ECHO_CMD} "${MANPREFIX}/man" > ${WRKSRC}/conf-man ${ECHO_CMD} "${CC} ${CFLAGS}" > ${WRKSRC}/conf-cc - ${ECHO_CMD} "${CC} ${LDFLAGS}" > ${WRKSRC}/conf-ld + ${ECHO_CMD} "${CC} ${STRIP} ${LDFLAGS}" > ${WRKSRC}/conf-ld ${ECHO_CMD} "${BGLIBS_INCLUDE}" > ${WRKSRC}/conf-bgincs ${ECHO_CMD} "${BGLIBS_LIB}" > ${WRKSRC}/conf-bglibs |