diff options
| author | jtc <jtc@NetBSD.org> | 1993-09-30 22:42:09 +0000 |
|---|---|---|
| committer | jtc <jtc@NetBSD.org> | 1993-09-30 22:42:09 +0000 |
| commit | e0ee30aed447ca21a8699acee1bcb206175e5731 (patch) | |
| tree | 8706a11bb6d6fd5accbfbdd685f903bd2ecdf803 /gnu/lib/libg++ | |
| parent | edf530b5b7936dc7407f280e3e4f16ad30322146 (diff) | |
Use `:', rather than `.' to separate user and group in chown commands
in case we ever decide to remove the support for the (obsolete) `.'
separator.
Diffstat (limited to 'gnu/lib/libg++')
| -rw-r--r-- | gnu/lib/libg++/Makefile | 8 | ||||
| -rw-r--r-- | gnu/lib/libg++/genclass/Makefile | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/gnu/lib/libg++/Makefile b/gnu/lib/libg++/Makefile index 98c069e9ad2..560fbb40845 100644 --- a/gnu/lib/libg++/Makefile +++ b/gnu/lib/libg++/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1993/09/23 23:28:29 rich Exp $ +# $Id: Makefile,v 1.6 1993/09/30 22:42:09 jtc Exp $ SUBDIR= libg++ genclass @@ -7,17 +7,17 @@ INCLUDEDIRS= iostream libg++ g++-include beforeinstall: @-if [ ! -d ${DESTDIR}/usr/include/g++ ]; then \ mkdir ${DESTDIR}/usr/include/g++; \ - chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/g++; \ + chown ${BINOWN}:${BINGRP} ${DESTDIR}/usr/include/g++; \ chmod 755 ${DESTDIR}/usr/include/g++; \ fi @-if [ ! -d ${DESTDIR}/usr/include/g++/gen ]; then \ mkdir ${DESTDIR}/usr/include/g++/gen; \ - chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/g++/gen; \ + chown ${BINOWN}:${BINGRP} ${DESTDIR}/usr/include/g++/gen; \ chmod 755 ${DESTDIR}/usr/include/g++/gen; \ fi @-if [ ! -d ${DESTDIR}/usr/include/g++/sys ]; then \ mkdir ${DESTDIR}/usr/include/g++/sys; \ - chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/include/g++/sys; \ + chown ${BINOWN}:${BINGRP} ${DESTDIR}/usr/include/g++/sys; \ chmod 755 ${DESTDIR}/usr/include/g++/sys; \ fi @-for i in ${INCLUDEDIRS}; do \ diff --git a/gnu/lib/libg++/genclass/Makefile b/gnu/lib/libg++/genclass/Makefile index 775c22c82f7..00c9160d817 100644 --- a/gnu/lib/libg++/genclass/Makefile +++ b/gnu/lib/libg++/genclass/Makefile @@ -4,7 +4,7 @@ NOMAN= noman afterinstall: sed -e '/^PROTODIR/s_PROTODIR.*_PROTODIR=${DESTDIR}/usr/include/g++/gen_; s_<VERSION>_2.4_;' $(.CURDIR)/genclass.sh > $(DESTDIR)$(BINDIR)/genclass - chown ${BINOWN}.${BINGRP} $(DESTDIR)$(BINDIR)/genclass + chown ${BINOWN}:${BINGRP} $(DESTDIR)$(BINDIR)/genclass chmod ${BINMODE} $(DESTDIR)$(BINDIR)/genclass .include <bsd.prog.mk> |
