diff options
author | leeym <leeym@FreeBSD.org> | 2003-02-23 18:36:51 +0800 |
---|---|---|
committer | leeym <leeym@FreeBSD.org> | 2003-02-23 18:36:51 +0800 |
commit | 0f30fd48732d32b1412ea5c26a33218b41b07ecb (patch) | |
tree | 9d2efba57e192bce3e88f4e6978e1889859ed54c /ftp/proftpd-devel | |
parent | 92d40bfe38f4c85d60921e1978ba95903f084aa3 (diff) | |
download | freebsd-ports-gnome-0f30fd48732d32b1412ea5c26a33218b41b07ecb.tar.gz freebsd-ports-gnome-0f30fd48732d32b1412ea5c26a33218b41b07ecb.tar.zst freebsd-ports-gnome-0f30fd48732d32b1412ea5c26a33218b41b07ecb.zip |
fix typo in Makefile (remove redundant backslash)
PR: 48583
Submitted by: Dmitry Panov <redfox@Fluffy.Khv.RU>
Diffstat (limited to 'ftp/proftpd-devel')
-rw-r--r-- | ftp/proftpd-devel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftp/proftpd-devel/Makefile b/ftp/proftpd-devel/Makefile index 9bb8bf158534..638de472e1d0 100644 --- a/ftp/proftpd-devel/Makefile +++ b/ftp/proftpd-devel/Makefile @@ -58,7 +58,7 @@ LIBDIRS:=${LIBDIRS}:${PREFIX}/lib/mysql .if defined(WITH_POSTGRES) POSTGRESQL_PORT?= databases/postgresql7 MODULES:=${MODULES}:mod_sql:mod_sql_postgres -LIB_DEPENDS+= pq.3:\${PORTSDIR}/${POSTGRESQL_PORT} +LIB_DEPENDS+= pq.3:${PORTSDIR}/${POSTGRESQL_PORT} INCLUDEDIRS:=${INCLUDEDIRS}:${PREFIX}/include/pgsql LIBDIRS:=${LIBDIRS}:${PREFIX}/lib .endif |