Hi,
I'm updating my experimental package with a recent SVN checkout.
Two bugs I've found so far:
- data/levels/Makefile.am doesn't install the .xml library files, only .lua
- po/Makefile.in intl/Makefile.in.in uses the macro MKINSTALLDIRS.
This have been removed in recent automake/gettext combinations.

Recent versions of gettext use
mkinstalldirs = $(SHELL) @install_sh@ -d

This one-line change should work with any gettext version, though.
I don't know about compatibility or other changes with the new gettext.

best regards,
Erich Schubert
--
   erich@(mucl.de|debian.org)      --      GPG Key ID: 4B3A135C    (o_
 To understand recursion you first need to understand recursion.   //\
 Wo befreundete Wege zusammenlaufen, da sieht die ganze Welt für   V_/_
       eine Stunde wie eine Heimat aus. --- Herrmann Hesse
# This should hopefully fix #386259 for now.
# Some claim that gettext is at fault, anyway, this appears as
# aclocal: macro `AM_PROG_MKDIR_P' required but not defined
--- enigma-svn/intl/Makefile.in.orig	2006-09-08 00:38:54.000000000 +0200
+++ enigma-svn/intl/Makefile.in	2006-09-08 00:39:05.000000000 +0200
@@ -39,7 +39,7 @@
 
 INSTALL = @INSTALL@
 INSTALL_DATA = @INSTALL_DATA@
-MKINSTALLDIRS = @MKINSTALLDIRS@
+MKINSTALLDIRS = @install_sh@ -d
 mkinstalldirs = $(SHELL) $(MKINSTALLDIRS)
 
 l = @INTL_LIBTOOL_SUFFIX_PREFIX@
--- enigma-svn/po/Makefile.in.in.orig	2006-09-08 00:37:51.000000000 +0200
+++ enigma-svn/po/Makefile.in.in	2006-09-08 00:38:21.000000000 +0200
@@ -28,7 +28,7 @@
 
 INSTALL = @INSTALL@
 INSTALL_DATA = @INSTALL_DATA@
-MKINSTALLDIRS = @MKINSTALLDIRS@
+MKINSTALLDIRS = @install_sh@ -d
 mkinstalldirs = $(SHELL) $(MKINSTALLDIRS)
 
 GMSGFMT = @GMSGFMT@
--- enigma-svn/data/levels/lib/Makefile.am	2006-03-21 22:48:05.000000000 +0100
+++ enigma-svn/data/levels/lib/Makefile.am	2006-09-08 10:44:24.000000000 +0200
@@ -1,3 +1,3 @@
 pkgdatadir = $(datadir)/@PACKAGE@/levels/lib
-pkgdata_DATA = $(wildcard $(srcdir)/*.lua)
+pkgdata_DATA = $(wildcard $(srcdir)/*.lua) $(wildcard $(srcdir)/*.xml)
 EXTRA_DIST = $(pkgdata_DATA)
_______________________________________________
Enigma-devel mailing list
Enigma-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/enigma-devel

Reply via email to