summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2008-11-02 16:56:06 +0000
committerAndreas Gruenbacher <agruen@suse.de>2008-11-02 16:56:06 +0000
commit2b016e4a06ac6d1ec6c09a840b2a4c06aaa363e9 (patch)
tree554b9cd7f35fc4600ad0e21ba8816886862ddaae /Makefile.in
parent97200435074352529314c9986540bdf92e05f50f (diff)
downloadquilt-2b016e4a06ac6d1ec6c09a840b2a4c06aaa363e9.tar.gz
- Fix from Dean Roehrich <Dean.Roehrich@sun.com> for Solaris:
"I ran into a case solaris ON build 99 where configure found ginstall, but the Makefile.in used something else, and that led to things going a bit haywire."
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index cfb4aca..4787464 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -426,8 +426,8 @@ ifeq ($(USE_NLS),yes)
install-main ::
for lang in $(LINGUAS) ; do \
dir=$(BUILD_ROOT)$(localedir)/$$lang/LC_MESSAGES; \
- install -d $$dir; \
- install -m 644 po/$$lang.mo \
+ $(INSTALL) -d $$dir; \
+ $(INSTALL) -m 644 po/$$lang.mo \
$$dir/quilt.mo ; \
done