diff options
author | lawrance <lawrance@FreeBSD.org> | 2005-11-30 08:53:36 +0800 |
---|---|---|
committer | lawrance <lawrance@FreeBSD.org> | 2005-11-30 08:53:36 +0800 |
commit | 95436221a0e11ce97938a22e47beb541800829c3 (patch) | |
tree | b176b825bd219107486caaf83e05cf02a0fd1b1b /comms | |
parent | 8295e3f9e36b2ea6019654e04d3355d7be4958a1 (diff) | |
download | freebsd-ports-gnome-95436221a0e11ce97938a22e47beb541800829c3.tar.gz freebsd-ports-gnome-95436221a0e11ce97938a22e47beb541800829c3.tar.zst freebsd-ports-gnome-95436221a0e11ce97938a22e47beb541800829c3.zip |
Fix build when WITH_SMSD and WITH_PGSQL are defined (cause was a malformed
sed command).
PR: ports/89422
Submitted by: Scot W. Hetzel <swhetzel@gmail.com>
Approved by: Guido Falsi <mad@madpilot.net> (maintainer)
Diffstat (limited to 'comms')
-rw-r--r-- | comms/gnokii/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/comms/gnokii/Makefile b/comms/gnokii/Makefile index dc8d5162a201..d7ca1baf19c2 100644 --- a/comms/gnokii/Makefile +++ b/comms/gnokii/Makefile @@ -147,7 +147,7 @@ post-build: @${REINPLACE_CMD} -e 's/^DB_LIBS := libfile.la$$/DB_LIBS = libfile.la libmysql.la/' ${WRKSRC}/smsd/Makefile .endif .if defined(WITH_PGSQL) - @${REINPLACE_CMD} -e 's/^DB_LIBS := libfile.la$$/DB_LIBS = libfile.la libpq.la/' -e 's/^DB_LIBS = libfile.la libmysql.la$$/DB_LIBS = libfile.la libpq.la libmysql.la' ${WRKSRC}/smsd/Makefile + @${REINPLACE_CMD} -e 's/^DB_LIBS := libfile.la$$/DB_LIBS = libfile.la libpq.la/' -e 's/^DB_LIBS = libfile.la libmysql.la$$/DB_LIBS = libfile.la libpq.la libmysql.la/' ${WRKSRC}/smsd/Makefile .endif @cd ${WRKSRC}/smsd && ${GMAKE} all .endif |