diff options
author | lofi <lofi@FreeBSD.org> | 2005-11-05 21:56:34 +0800 |
---|---|---|
committer | lofi <lofi@FreeBSD.org> | 2005-11-05 21:56:34 +0800 |
commit | bf30a87e218586b96a3bf519f1925b8d2eff461f (patch) | |
tree | 1bd336b3ea8143a388f9116d64c9115eb5266861 /editors/calligra | |
parent | f96db0f3acb78f6bbd7d84190ed575d10be3e27c (diff) | |
download | freebsd-ports-gnome-bf30a87e218586b96a3bf519f1925b8d2eff461f.tar.gz freebsd-ports-gnome-bf30a87e218586b96a3bf519f1925b8d2eff461f.tar.zst freebsd-ports-gnome-bf30a87e218586b96a3bf519f1925b8d2eff461f.zip |
Fix the PREFIX-safeness fix.
Diffstat (limited to 'editors/calligra')
-rw-r--r-- | editors/calligra/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/editors/calligra/Makefile b/editors/calligra/Makefile index 185bec6793ac..684dac69a2b2 100644 --- a/editors/calligra/Makefile +++ b/editors/calligra/Makefile @@ -43,10 +43,8 @@ USE_PGSQL= yes .include "${.CURDIR}/../../x11/kde3/Makefile.kde" .include <bsd.port.pre.mk> -PG_INCDIR!= ${LOCALBASE}/bin/pg_config --includedir -PG_LIBDIR!= ${LOCALBASE}/bin/pg_config --libdir - -CONFIGURE_ARGS+=--with-pgsqlincdir=${PG_INCDIR} --with-pgsqllibdir=${PG_LIBDIR} +CONFIGURE_ARGS+=--with-pgsqlincdir=${LOCALBASE}/include \ + --with-pgsqllibdir=${LOCALBASE}/lib .if ${OSVERSION} < 500035 EXTRA_PATCHES= ${PATCHDIR}/extrapatch-kexi-main-keximainwindowimpl.cpp |