diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-08-22 19:01:07 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-08-22 19:01:07 +0000 |
commit | 5281212be38447df70380d4e9e8cd0ef1cf11517 (patch) | |
tree | 655e734faae358d2c0edeefd08e9aeac6202b150 /archivers | |
parent | Assign USE_XLIB var. Any ports which use XLib needs it. (diff) |
chmod -> ${CHMOD}
chown -> ${CHOWN}
Notes
Notes:
svn path=/head/; revision=20885
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/linux_rar/Makefile | 4 | ||||
-rw-r--r-- | archivers/pkzip/Makefile | 4 | ||||
-rw-r--r-- | archivers/rar/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/archivers/linux_rar/Makefile b/archivers/linux_rar/Makefile index 10c4dc78b756..03e530c33b88 100644 --- a/archivers/linux_rar/Makefile +++ b/archivers/linux_rar/Makefile @@ -4,7 +4,7 @@ # Date created: 30 April 1999 # Whom: FUJISHIMA Satsuki <k5@respo.or.jp> # -# $Id: Makefile,v 1.3 1999/05/05 14:27:56 flathill Exp $ +# $Id: Makefile,v 1.4 1999/07/21 14:55:25 marcel Exp $ # DISTNAME= rarlnx25 @@ -28,7 +28,7 @@ EXTRACT_AFTER_ARGS= # empty STRIP= # empty: do not touch linux binary! post-fetch: - @chmod a+x ${DISTDIR}/${DISTFILES} + @${CHMOD} a+x ${DISTDIR}/${DISTFILES} do-build: do-install: diff --git a/archivers/pkzip/Makefile b/archivers/pkzip/Makefile index 335393e4ddb1..66903cb6abd3 100644 --- a/archivers/pkzip/Makefile +++ b/archivers/pkzip/Makefile @@ -3,7 +3,7 @@ # Date created: 17 Mar 1999 # Whom: xxx # -# $Id: Makefile,v 1.2 1999/05/24 02:02:55 steve Exp $ +# $Id: Makefile,v 1.3 1999/07/21 14:55:26 marcel Exp $ # DISTNAME= pklin251 @@ -27,7 +27,7 @@ do-extract: ${MKDIR} ${WRKDIR} ${MKDIR} ${WRKSRC} ${CP} ${PORTSDIR}/distfiles/${DISTFILES} ${WRKSRC}/. - chmod 700 ${WRKSRC}/${DISTFILES} + ${CHMOD} 700 ${WRKSRC}/${DISTFILES} cd ${WRKSRC} && \ ./${DISTFILES} diff --git a/archivers/rar/Makefile b/archivers/rar/Makefile index 7be2a7811de9..969a61af2500 100644 --- a/archivers/rar/Makefile +++ b/archivers/rar/Makefile @@ -4,7 +4,7 @@ # Date created: 15 May 1996 # Whom: ache # -# $Id: Makefile,v 1.14 1999/04/17 14:41:34 ache Exp $ +# $Id: Makefile,v 1.15 1999/04/21 12:17:16 jseger Exp $ # DISTNAME= rarbsd @@ -31,7 +31,7 @@ STRIP= .endif post-fetch: - @chmod a+x ${DISTDIR}/${DISTFILES} + @${CHMOD} a+x ${DISTDIR}/${DISTFILES} #do-build: # cd ${WRKSRC} && \ |