diff options
author | crees <crees@FreeBSD.org> | 2013-10-01 20:35:34 +0800 |
---|---|---|
committer | crees <crees@FreeBSD.org> | 2013-10-01 20:35:34 +0800 |
commit | 116d9d466a604ed0c0d076a13e0e5d460d6f85ee (patch) | |
tree | 07340fce9fbb75a8e7e75a51ec40d2af8d0e567d | |
parent | 8306a0730d49f03dcf0711a2d32429a5af0280c7 (diff) | |
download | freebsd-ports-gnome-116d9d466a604ed0c0d076a13e0e5d460d6f85ee.tar.gz freebsd-ports-gnome-116d9d466a604ed0c0d076a13e0e5d460d6f85ee.tar.zst freebsd-ports-gnome-116d9d466a604ed0c0d076a13e0e5d460d6f85ee.zip |
This port depended on unzip, but used ${UNZIP_CMD}, thus breaking systems that
do not have archivers/unzip installed. Perhaps the correct fix is in
bsd.commands.mk...
PR: ports/181624
Approved by: maintainer timeout (kutulu@kutulu.org, 4 weeks)
-rw-r--r-- | textproc/docbook-420/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textproc/docbook-420/Makefile b/textproc/docbook-420/Makefile index 7a744b062f13..d68d4ba47f75 100644 --- a/textproc/docbook-420/Makefile +++ b/textproc/docbook-420/Makefile @@ -35,7 +35,7 @@ pre-su-install: @[ -d ${INSTDIR}/${PORTVERSION} ] || ${MKDIR} ${INSTDIR}/${PORTVERSION} do-install: - @${UNZIP_CMD} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${DISTFILES} -d ${INSTDIR}/${PORTVERSION} + @unzip ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${DISTFILES} -d ${INSTDIR}/${PORTVERSION} @${INSTALL_DATA} ${FILESDIR}/catalog ${INSTDIR}/${PORTVERSION}/catalog @${ECHO_CMD} "CATALOG \"${ISOCAT}\"" >> ${INSTDIR}/${PORTVERSION}/catalog @${CHMOD} ${SHAREMODE} ${INSTDIR}/${PORTVERSION}/* |