1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-14 07:43:06 +00:00

Urk, do this so it actually works. Sorry guys.

This commit is contained in:
Jordan K. Hubbard 1998-10-05 03:41:16 +00:00
parent f4efb76232
commit 2f474adfb2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=13659

View File

@ -3,7 +3,7 @@
# Date created: 17 October 1994
# Whom: jmz
#
# $Id: Makefile,v 1.19 1998/10/04 10:31:38 jkh Exp $
# $Id: Makefile,v 1.20 1998/10/04 23:18:12 jkh Exp $
#
DISTNAME= unzip532
@ -15,11 +15,6 @@ MAINTAINER= ache@FreeBSD.ORG
WRKSRC= ${WRKDIR}/unzip-5.32
MAKEFILE= unix/Makefile
.if ${ARCH} == alpha
ALL_TARGET= bsd
.else
ALL_TARGET= freebsd
.endif
MAKE_FLAGS= LOCAL_UNZIP="${CFLAGS} -DUSE_UNSHRINK" -f
MAN1= funzip.1 unzip.1 unzipsfx.1 zipgrep.1 zipinfo.1
@ -36,3 +31,9 @@ do-install:
${INSTALL_DATA} README COPYING WHERE ${PREFIX}/share/doc/unzip
.include <bsd.port.mk>
.if ${ARCH} == "alpha"
ALL_TARGET= bsd
.else
ALL_TARGET= freebsd
.endif