summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog8
-rw-r--r--font/devpdf/Makefile.sub4
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 83bf7ed8..32ffdf6e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2013-03-17 Ingo Schwarze <schwarze@openbsd.org>
+
+ * font/devpdf/Makefile.sub: Build system fixes.
+
+ (GROFF_FONT_FILES): Avoid installing Makefile.sub.orig when it's
+ around.
+ (install): Create $(DESTDIR)$(fontsubdir)/util when missing.
+
2013-03-05 Werner LEMBERG <wl@gnu.org>
* doc/groff.texinfo: Improve documentation of `\s'.
diff --git a/font/devpdf/Makefile.sub b/font/devpdf/Makefile.sub
index b94068c4..bfb9e62d 100644
--- a/font/devpdf/Makefile.sub
+++ b/font/devpdf/Makefile.sub
@@ -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 \