diff options
author | 1999-05-28 21:53:16 +0000 | |
---|---|---|
committer | 1999-05-28 21:53:16 +0000 | |
commit | db030d17cc9ca63913e527921fb99dc8079bcfde (patch) | |
tree | b7a98df316c0d44e1e8461e5fd72e1e8c4104f3d | |
parent | fix up audio_if interfaces and debugging code (allows switching between (diff) | |
download | wireguard-openbsd-db030d17cc9ca63913e527921fb99dc8079bcfde.tar.xz wireguard-openbsd-db030d17cc9ca63913e527921fb99dc8079bcfde.zip |
forgot to install _G_config.h, somehow...
-rw-r--r-- | gnu/egcs/libio/Makefile.bsd-wrapper | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/egcs/libio/Makefile.bsd-wrapper b/gnu/egcs/libio/Makefile.bsd-wrapper index 3fdcb25480d..e1f683dab41 100644 --- a/gnu/egcs/libio/Makefile.bsd-wrapper +++ b/gnu/egcs/libio/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.2 1999/05/28 14:28:17 espie Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.3 1999/05/28 21:53:16 espie Exp $ LIBIO= io LIBIOSTREAM= iostream @@ -66,8 +66,8 @@ clean: $(IOSTREAM_SRCS:.cc=.so) rm -f llib-lib$(LIBIOSTREAM).ln $(IOSTREAM_SRCS:.cc=.ln) -includes: - install -d -m 755 -o $(BINOWN) -g $(BINGRP) $(DESTDIR)/usr/include/g++ +includes: _G_config.h + @install -d -m 755 -o $(BINOWN) -g $(BINGRP) $(DESTDIR)/usr/include/g++ @-cd $(.CURDIR); for i in *.h; do \ if [ -e $$i ]; then \ cmp -s $$i $(DESTDIR)/usr/include/g++/$$i || \ @@ -75,6 +75,9 @@ includes: $$i $(DESTDIR)/usr/include/g++/$$i; \ fi \ done + @cmp -s _G_config.h $(DESTDIR)/usr/include/g++/_G_config.h || \ + install -c -o $(BINOWN) -g $(BINGRP) -m $(NONBINMODE) \ + _G_config.h $(DESTDIR)/usr/include/g++/_G_config.h install: @echo "done" |