diff options
author | Sam Lawrance <lawrance@FreeBSD.org> | 2005-11-30 00:53:36 +0000 |
---|---|---|
committer | Sam Lawrance <lawrance@FreeBSD.org> | 2005-11-30 00:53:36 +0000 |
commit | ad64eef26eab988fa61e49f3a5fe068a031f5777 (patch) | |
tree | cbf8eeb98cccbdfbdd57ef4a53b0c89aa48176d3 | |
parent | [MAINTAINER] editors/rospell: fix build on 4.x (diff) |
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)
Notes
Notes:
svn path=/head/; revision=149988
-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 |