diff options
author | mandree <mandree@FreeBSD.org> | 2014-06-29 14:45:18 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2014-06-29 14:45:18 +0800 |
commit | 4b06091c3194c57928d4f93a46c1fd74a2c47bef (patch) | |
tree | f6107d4da06a774759b5d9c4bb258987e8606f61 | |
parent | c2063e529c81a4210b24d5f981976dad4f76e7aa (diff) | |
download | freebsd-ports-gnome-4b06091c3194c57928d4f93a46c1fd74a2c47bef.tar.gz freebsd-ports-gnome-4b06091c3194c57928d4f93a46c1fd74a2c47bef.tar.zst freebsd-ports-gnome-4b06091c3194c57928d4f93a46c1fd74a2c47bef.zip |
Unbreak build: Fix typo in popt library dependency (missing p character),
so that rsync actually finds a preinstalled libpopt.so if it is there.
Approved by: portmgr (blanket "just fix it" approval)
-rw-r--r-- | net/rsync/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rsync/Makefile b/net/rsync/Makefile index 89815db9cd21..a28fa02bec1a 100644 --- a/net/rsync/Makefile +++ b/net/rsync/Makefile @@ -63,7 +63,7 @@ ICONV_CPPFLAGS= -I${LOCALBASE}/include ICONV_LDFLAGS= -L${LOCALBASE}/lib ICONV_CONFIGURE_ENABLE= iconv iconv-open -POPT_PORT_LIB_DEPENDS= libopt.so:${PORTSDIR}/devel/popt +POPT_PORT_LIB_DEPENDS= libpopt.so:${PORTSDIR}/devel/popt POPT_PORT_CPPFLAGS= -I${LOCALBASE}/include POPT_PORT_LDFLAGS= -L${LOCALBASE}/lib POPT_CONFIGURE_WITH= included-popt |