diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2010-11-30 21:36:42 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2010-11-30 21:36:42 +0000 |
commit | d2df0057b885ff3675c8dabf9a7f257161d3beb1 (patch) | |
tree | 2fe148890faf0e4408b930cee5eca3ebc625063f /Mk | |
parent | Update to 0.14 (diff) |
- Add a hack to display pkg-message on package install on packages created with
pkg_create -b
PR: ports/152626
Reported by: ohauer
Notes
Notes:
svn path=/head/; revision=265469
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index fa3ffffc2480..741ef4e47a45 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -5931,6 +5931,7 @@ fake-pkg: fi; \ if [ -f ${PKGMESSAGE} ]; then \ ${CP} ${PKGMESSAGE} ${PKG_DBDIR}/${PKGNAME}/+DISPLAY; \ + ${ECHO_CMD} "@display +DISPLAY" >> ${PKG_DBDIR}/${PKGNAME}/+CONTENTS; \ fi; \ for dep in `${PKG_INFO} -qf ${PKGNAME} | ${AWK} '/^@pkgdep / {print $$2}' | ${SORT} -u`; do \ if [ -d ${PKG_DBDIR}/$$dep -a -z `${ECHO_CMD} $$dep | ${GREP} -E ${PKG_IGNORE_DEPENDS}` ]; then \ |