diff options
author | tnn <tnn@pkgsrc.org> | 2007-07-30 13:58:28 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2007-07-30 13:58:28 +0000 |
commit | 0396d511c5510b2b4323183317c39040c4b3f9f9 (patch) | |
tree | ca07c8e1e72afab02ce08e09491830bc10413000 /wm/openbox/patches | |
parent | b99d59acd567c910807efc5c6f2a392238975705 (diff) | |
download | pkgsrc-0396d511c5510b2b4323183317c39040c4b3f9f9.tar.gz |
Attempt to fix two problems seen with the installation of translation files:
- Don't be explicit about using a shell interpreter for install_sh.
- use $(mkinstalldirs) as the "mkdir -p" replacement.
- Bump PKGREVISION
Diffstat (limited to 'wm/openbox/patches')
-rw-r--r-- | wm/openbox/patches/patch-ab | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/wm/openbox/patches/patch-ab b/wm/openbox/patches/patch-ab new file mode 100644 index 00000000000..cd018bcb834 --- /dev/null +++ b/wm/openbox/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.4 2007/07/30 13:58:28 tnn Exp $ + +--- po/Makefile.in.in.orig 2007-07-13 16:21:27.000000000 +0200 ++++ po/Makefile.in.in +@@ -30,8 +30,8 @@ gettextsrcdir = $(datadir)/gettext/po + + INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ +-mkinstalldirs = $(SHELL) @install_sh@ -d +-mkdir_p = @mkdir_p@ ++mkinstalldirs = @install_sh@ -d ++mkdir_p = $(mkinstalldirs) + + GMSGFMT_ = @GMSGFMT@ + GMSGFMT_no = @GMSGFMT@ |