Hi, here are fixes for two minor issues encountered while updating the OpenBSD groff port; both are operating system independent.
Yours, Ingo ----- 8< ----- schnipp ----- >8 ----- 8< ----- schnapp ----- >8 ----- Index: ChangeLog =================================================================== RCS file: /sources/groff/groff/ChangeLog,v retrieving revision 1.1396 diff -u -p -r1.1396 ChangeLog --- ChangeLog 5 Mar 2013 08:07:58 -0000 1.1396 +++ ChangeLog 17 Mar 2013 21:02:17 -0000 @@ -1,3 +1,10 @@ +2013-03-17 Ingo Schwarze <[email protected]> + + * font/devpdf/Makefile.sub: build system fixes. + + Avoid installing Makefile.sub.orig when it's around. + Create $(DESTDIR)$(fontsubdir)/util when missing. + 2013-03-05 Werner LEMBERG <[email protected]> * doc/groff.texinfo: Improve documentation of `\s'. Index: font/devpdf/Makefile.sub =================================================================== RCS file: /sources/groff/groff/font/devpdf/Makefile.sub,v retrieving revision 1.5 diff -u -p -r1.5 Makefile.sub --- font/devpdf/Makefile.sub 29 Jan 2013 11:07:11 -0000 1.5 +++ font/devpdf/Makefile.sub 17 Mar 2013 21:02:19 -0000 @@ -18,7 +18,7 @@ DEV=pdf GROFF_FONT_FILES=`cd $(top_builddir)/font/devpdf \ - && find * -maxdepth 0 -type f ! -name Makefile.sub \ + && find * -maxdepth 0 -type f ! -name 'Makefile.sub*' \ -exec grep -l internalname {} \;` ENC_FILES=`cd $(top_builddir)/font/devpdf; ls enc/*` MAP_FILES=`cd $(top_builddir)/font/devpdf; ls map/*` @@ -105,6 +105,8 @@ install_data: || $(mkinstalldirs) $(DESTDIR)$(fontsubdir)/enc -test -d $(DESTDIR)$(fontsubdir)/map \ || $(mkinstalldirs) $(DESTDIR)$(fontsubdir)/map + -test -d $(DESTDIR)$(fontsubdir)/util \ + || $(mkinstalldirs) $(DESTDIR)$(fontsubdir)/util for f in $(MOSTLYCLEANADD); do \ $(RM) $(DESTDIR)$(fontsubdir)/$$f; \ if test -f $$f; then \
