blob: a0f30fb665b18f62265f8b0b2bd1c40452d4894b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
$NetBSD: patch-ab,v 1.5 2011/08/06 17:09:04 wiz Exp $
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.
--- 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@
|