summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog5
-rw-r--r--rules.make3
2 files changed, 6 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index 6216ec21..564ed7c5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -23,6 +23,9 @@ iso-codes (0.52-1) UNRELEASED; urgency=low
and no longer distributed
* Remove iso2tab.py as it is no longer used.
* iso2pot.py: Derive the header of POT files from the file input
+ * Use a more portable method of creating directories during the
+ installation of data files. Thanks to Julio M. Merino Vidal
+ for the patch. Closes: #375687
[ Miroslav Kure ]
* iso_639/cs.po updated
@@ -32,7 +35,7 @@ iso-codes (0.52-1) UNRELEASED; urgency=low
* iso_4217
- fr.po updated from the standard itself (lucky me)
- -- Tobias Toedter <t.toedter@gmx.net> Fri, 07 Jul 2006 22:17:49 +0200
+ -- Tobias Toedter <t.toedter@gmx.net> Fri, 07 Jul 2006 23:19:25 +0200
iso-codes (0.51-1.1) unstable; urgency=low
diff --git a/rules.make b/rules.make
index b86d922a..7e85a19d 100644
--- a/rules.make
+++ b/rules.make
@@ -12,7 +12,8 @@ install-data-hook: $(mofiles)
cat=`basename $$cat`; \
lang=`echo $$cat | sed 's/\.mo$$//'`; \
dir=$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES; \
- $(INSTALL_DATA) -D $$cat $$dir/$(DOMAIN).mo; \
+ $(mkinstalldirs) $$dir; \
+ $(INSTALL_DATA) $$cat $$dir/$(DOMAIN).mo; \
done
uninstall-hook: