diff options
author | tv <tv> | 1998-08-02 02:08:51 +0000 |
---|---|---|
committer | tv <tv> | 1998-08-02 02:08:51 +0000 |
commit | 75b8078d5718db33d3cb1d2f5a818c4ed30ad83f (patch) | |
tree | f6efe0ee2f0122c9fd72e876b8cbd34464a4d04d | |
parent | 7aab828872f0d831ba9fdac291fd64a174c12c26 (diff) | |
download | pkgsrc-75b8078d5718db33d3cb1d2f5a818c4ed30ad83f.tar.gz |
Add "Building stage 1 of 2", "Building stage 2 of 2" messages when
ZIP_ENCRYPTION is set, so that the user is not confused by unzip building
twice.
-rw-r--r-- | archivers/unzip/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archivers/unzip/Makefile b/archivers/unzip/Makefile index 3cb3ec2b702..70655606fb8 100644 --- a/archivers/unzip/Makefile +++ b/archivers/unzip/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 1998/06/20 23:26:06 tv Exp $ +# $NetBSD: Makefile,v 1.11 1998/08/02 02:08:51 tv Exp $ # FreeBSD Id: Makefile,v 1.14 1997/06/19 05:30:04 ache Exp # @@ -25,9 +25,11 @@ MIRROR_DISTFILE=no # This bootstrap is ugly, but zcrypt is only shipped as a zipfile. pre-build: @cd ${WRKSRC}; test -f README.CR || ( \ + echo '*** Building stage 1 of 2--unzip without encryption.' && \ ${MAKE_PROGRAM} ${MAKE_FLAGS} -f ${MAKEFILE} unzip && \ ./unzip -qo ${DISTDIR}/zcrypt27.zip && \ ${RM} -f *.o unzip ) + @echo '*** Building stage 2 of 2--unzip with encryption.' .endif do-install: |