diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-06-07 23:22:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-06-07 23:22:12 +0000 |
commit | b486dd4c8c5efd52fab38dcfc35fcc2e1e882957 (patch) | |
tree | 05f3d7de51ce3dd59a9bd3bb84113b9e739b2c74 /gnu | |
parent | 9f4257a0b68d853386a347f62ce9543b1adc4433 (diff) |
$(INSTALL) not install
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libg++/libg++/Makefile.bsd-wrapper | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/lib/libg++/libg++/Makefile.bsd-wrapper b/gnu/lib/libg++/libg++/Makefile.bsd-wrapper index afb58578947..a85785157ad 100644 --- a/gnu/lib/libg++/libg++/Makefile.bsd-wrapper +++ b/gnu/lib/libg++/libg++/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.9 1998/03/03 21:40:15 millert Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.10 1998/06/07 23:22:11 millert Exp $ .if defined(OBJMACHINE) OBJDIR= obj.${MACHINE} @@ -83,15 +83,15 @@ clean: _SUBDIRUSE afterinstall: @-cd $(.CURDIR); for i in libg++.info*; do \ cmp -s $$i $(DESTDIR)/usr/share/info/$$i || \ - install -c -o $(BINOWN) -g $(BINGRP) -m $(NONBINMODE) \ + $(INSTALL) -c -o $(BINOWN) -g $(BINGRP) -m $(NONBINMODE) \ $$i $(DESTDIR)/usr/share/info/$$i; \ done includes: - @-install -d -m 755 -o $(BINOWN) -g $(BINGRP) $(DESTDIR)/usr/include/g++/gen + @-$(INSTALL) -d -m 755 -o $(BINOWN) -g $(BINGRP) $(DESTDIR)/usr/include/g++/gen @-cd $(.CURDIR)/src; for i in *.h gen/*.ccP gen/*.hP; do \ cmp -s $$i $(DESTDIR)/usr/include/g++/$$i || \ - install -c -o $(BINOWN) -g $(BINGRP) -m $(NONBINMODE) \ + $(INSTALL) -c -o $(BINOWN) -g $(BINGRP) -m $(NONBINMODE) \ $$i $(DESTDIR)/usr/include/g++/$$i; \ done |