pkgsrc-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: CONFIGURE_ARGS - ways other than edit Makefile?





.if ${PKGPATH} == "x11/xlockmore-lite"
CONFIGURE_ARGS+= --enable-syslog
.endif

One small fix:

 .if "${PKGPATH}" == "x11/xlockmore-lite"
 CONFIGURE_ARGS+= --enable-syslog
 .endif

The quotes are needed around ${PKGPATH} to avoid a syntax
error should mk.conf be used in an environment where PKGPATH
is not defined, such as while rebuilding a kernel.  Ask me
how I know.  ;-)

Anne.


Home | Main Index | Thread Index | Old Index