From d05da9ef6b91caef88968c1208af35a8931ef166 Mon Sep 17 00:00:00 2001 From: Tom Yu Date: Wed, 18 Jan 2012 16:37:02 +0000 Subject: [PATCH] Use INSTALL_DATA to install message catalogues Pull up r25492 from trunk ------------------------------------------------------------------------ r25492 | hartmans | 2011-11-29 16:22:26 -0500 (Tue, 29 Nov 2011) | 4 lines ticket: new target_version: 1.10 tags: pullup subject: Use INSTALL_DATA to install message catalogues Use INSTALL_DATA to avoid marking .mo files executable ticket: 7078 version_fixed: 1.10 status: resolved git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-10@25656 dc483132-0cff-0310-8789-dd5450dbe970 --- src/po/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/po/Makefile.in b/src/po/Makefile.in index 4b58c726e7..380674c8d8 100644 --- a/src/po/Makefile.in +++ b/src/po/Makefile.in @@ -45,7 +45,7 @@ install:: lang=`basename $$c .mo`; \ $(top_srcdir)/config/mkinstalldirs \ $(DESTDIR)$(KRB5_LOCALEDIR)/$$lang/LC_MESSAGES; \ - install -c $$c \ + $(INSTALL_DATA) $$c \ $(DESTDIR)$(KRB5_LOCALEDIR)/$$lang/LC_MESSAGES/$(DOMAIN).mo; \ done -- 2.47.3