diff options
Diffstat (limited to 'bfd/Makefile.am')
-rw-r--r-- | bfd/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bfd/Makefile.am b/bfd/Makefile.am index 5d2afb0..e579733 100644 --- a/bfd/Makefile.am +++ b/bfd/Makefile.am @@ -980,7 +980,9 @@ bfdver.h: $(srcdir)/version.h $(srcdir)/Makefile.in -e "s,@report_bugs_to@,$$report_bugs_to," \ < $(srcdir)/version.h > $@; \ echo "@set VERSION $(VERSION)" > doc/bfdver.texi; \ - echo "@set VERSION_PACKAGE $(PKGVERSION)" >> doc/bfdver.texi; \ + if [ -n "$(PKGVERSION)" ]; then \ + echo "@set VERSION_PACKAGE $(PKGVERSION)" >> doc/bfdver.texi; \ + fi; \ echo "@set UPDATED `date '+%B %Y'`" >> doc/bfdver.texi; \ if [ -n "$(REPORT_BUGS_TEXI)" ]; then \ echo "@set BUGURL $(REPORT_BUGS_TEXI)" >> doc/bfdver.texi; \ |