diff options
author | steve <steve@FreeBSD.org> | 1998-02-08 22:54:57 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1998-02-08 22:54:57 +0000 |
commit | c5086fcebcd572442d0e3bc4f7e79203ce9b0227 (patch) | |
tree | 059f1fc83ae4bf5279bfb19459f97e3a9828ee96 /textproc | |
parent | 657d656325c70307cae56677d9f065212d92d896 (diff) | |
download | FreeBSD-ports-c5086fcebcd572442d0e3bc4f7e79203ce9b0227.zip FreeBSD-ports-c5086fcebcd572442d0e3bc4f7e79203ce9b0227.tar.gz |
unzip requires the -d option to be after the list of zip files.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/iso8879/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/iso8879/Makefile b/textproc/iso8879/Makefile index 7c2accf..81d6b88 100644 --- a/textproc/iso8879/Makefile +++ b/textproc/iso8879/Makefile @@ -3,7 +3,7 @@ # Date created: June 19, 1997 # Whom: jfieber # -# $Id: Makefile,v 1.3 1997/07/10 02:37:46 jfieber Exp $ +# $Id: Makefile,v 1.4 1997/07/10 03:25:28 jfieber Exp $ # DISTNAME= isoENTS @@ -29,7 +29,7 @@ pre-install: @[ -d ${INSTDIR} ] || ${MKDIR} ${INSTDIR} do-install: - @unzip -a -q -o -d ${INSTDIR} ${DISTDIR}/${DISTFILES} + @unzip -a -q -o ${DISTDIR}/${DISTFILES} -d ${INSTDIR} @${INSTALL_DATA} ${FILESDIR}/catalog ${INSTDIR}/catalog @chmod ${SHAREMODE} ${INSTDIR}/* @/usr/sbin/chown -R ${SHAREOWN}.${SHAREGRP} ${INSTDIR} |