2014-05-25 7:04 GMT+02:00 Perry Hutchison <per...@pluto.rain.com>: > post-install: > - @[ -f ${PREFIX}/etc/diskcheckd.conf ] \ > - || ${CP} -p ${PREFIX}/etc/diskcheckd.conf.sample \ > - ${PREFIX}/etc/diskcheckd.conf > + @[ -f ${STAGEDIR}${PREFIX}/etc/diskcheckd.conf ] \ > + || ${CP} -p ${STAGEDIR}${PREFIX}/etc/diskcheckd.conf.sample \ > + ${STAGEDIR}${PREFIX}/etc/diskcheckd.conf Your condition is unneeded. You don't need check the existence of ${STAGEDIR}${PREFIX}/etc/distcheckd.conf because you'll copy it, the ${STAGEDIR} are empty!!!! The reason of "old" check was: shouldn't overwrite the existing distcheckd.conf (in system, not STAGEDIR). These checks are unnecessary, the 'pkg' does it.
Cheers, Zsolt _______________________________________________ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"