summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2017-07-28 08:21:57 +0000
committerMarc Espie <espie@cvs.openbsd.org>2017-07-28 08:21:57 +0000
commit54dfc81bde527f7bc04590a515fd955958fc3286 (patch)
treeeec4ee314319925396a60ab8d2b530d0905e4ab2
parente08bd591c7410f118d8f9d4b1c9f6c9987e9227c (diff)
make warns about POST_INSTALL being empty.
other similar makefiles define POST_INSTALL = : so even the GNU guys are aware this might be non standard. fix it. okay krw@ kettenis@
-rw-r--r--gnu/usr.bin/binutils/gdb/doc/Makefile.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/usr.bin/binutils/gdb/doc/Makefile.in b/gnu/usr.bin/binutils/gdb/doc/Makefile.in
index 0ee7b5b3de7..682b5414b2f 100644
--- a/gnu/usr.bin/binutils/gdb/doc/Makefile.in
+++ b/gnu/usr.bin/binutils/gdb/doc/Makefile.in
@@ -34,6 +34,8 @@ INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
+POST_INSTALL = :
+
# main GDB source directory
gdbdir = $(srcdir)/..