diff options
author | mharo <mharo@FreeBSD.org> | 1999-08-23 03:01:07 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-08-23 03:01:07 +0800 |
commit | 89e9e517a9f1c97f22317b99b12b1133075eab02 (patch) | |
tree | faad1b92712e2988cd55bc71cc77494abb6ed655 /shells | |
parent | 164234dfead0f28fb873b763e6f378cb3313f426 (diff) | |
download | freebsd-ports-gnome-89e9e517a9f1c97f22317b99b12b1133075eab02.tar.gz freebsd-ports-gnome-89e9e517a9f1c97f22317b99b12b1133075eab02.tar.zst freebsd-ports-gnome-89e9e517a9f1c97f22317b99b12b1133075eab02.zip |
chmod -> ${CHMOD}
chown -> ${CHOWN}
Diffstat (limited to 'shells')
-rw-r--r-- | shells/tcsh/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shells/tcsh/Makefile b/shells/tcsh/Makefile index 1de41d3b11cd..5db0a120aac6 100644 --- a/shells/tcsh/Makefile +++ b/shells/tcsh/Makefile @@ -3,7 +3,7 @@ # Date created: 22 August 1994 # Whom: jkh # -# $Id: Makefile,v 1.21 1998/08/27 02:34:07 max Exp $ +# $Id: Makefile,v 1.22 1998/10/21 19:16:47 ache Exp $ # DISTNAME= tcsh-6.08 @@ -20,8 +20,8 @@ INSTALL_TARGET= install install.man MAN1= tcsh.1 post-install: - chown bin.bin ${PREFIX}/bin/tcsh - chown bin.bin ${PREFIX}/man/man1/tcsh.1 + ${CHOWN} bin.bin ${PREFIX}/bin/tcsh + ${CHOWN} bin.bin ${PREFIX}/man/man1/tcsh.1 cd ${WRKSRC}; ${INSTALL_DATA} tcsh.C.cat ${PREFIX}/share/nls/C/tcsh.cat cd ${WRKSRC}; ${INSTALL_DATA} tcsh.french.cat ${PREFIX}/share/nls/fr_FR.ISO_8859-1/tcsh.cat ${LN} -sf ${PREFIX}/share/nls/fr_FR.ISO_8859-1/tcsh.cat ${PREFIX}/share/nls/fr_BE.ISO_8859-1/tcsh.cat |