diff options
author | kris <kris@FreeBSD.org> | 2004-01-28 13:44:55 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-01-28 13:44:55 +0800 |
commit | 01f1cfceec918c314f2715d9cbfb6cf6bdb61021 (patch) | |
tree | 74343a0759af84f1152b617a1b68edc821ed3777 /print/ifhp | |
parent | 20e1377940b557c13fa4d106e5fe1cc11c59a8e2 (diff) | |
download | freebsd-ports-gnome-01f1cfceec918c314f2715d9cbfb6cf6bdb61021.tar.gz freebsd-ports-gnome-01f1cfceec918c314f2715d9cbfb6cf6bdb61021.tar.zst freebsd-ports-gnome-01f1cfceec918c314f2715d9cbfb6cf6bdb61021.zip |
Correct syntax error when PREFIX is defined.
Diffstat (limited to 'print/ifhp')
-rw-r--r-- | print/ifhp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print/ifhp/Makefile b/print/ifhp/Makefile index 38dd081e116e..4c89de91ed02 100644 --- a/print/ifhp/Makefile +++ b/print/ifhp/Makefile @@ -26,10 +26,10 @@ CONFIGURE_ARGS= \ --with-ldopts="-L${LOCALBASE}/lib" \ --with-ccopts="-I${LOCALBASE}/include" .if defined(PREFIX) - CONFIGURE_ARGS+= --prefix="${PREFIX}" +CONFIGURE_ARGS+= --prefix="${PREFIX}" .endif .if defined(SYSCONFDIR) - CONFIGURE_ARGS+= --sysconfdir="${SYSCONFDIR}" +CONFIGURE_ARGS+= --sysconfdir="${SYSCONFDIR}" .endif MAN8= ifhp.8 textps.8 |