diff options
author | Stephen Torri <storri@users.sourceforge.net> | 2004-08-08 00:34:17 +0000 |
---|---|---|
committer | Stephen Torri <storri@users.sourceforge.net> | 2004-08-08 00:34:17 +0000 |
commit | 3d1a29736bd6f8197b4e10d54603797f271d3bbc (patch) | |
tree | 415b4b5b212fbdad8d420963199aa3a2ffa52098 /po | |
parent | 12e358e72e094a2bc192526c374a6bb0ff82e968 (diff) | |
download | xine-lib-3d1a29736bd6f8197b4e10d54603797f271d3bbc.tar.gz xine-lib-3d1a29736bd6f8197b4e10d54603797f271d3bbc.tar.bz2 |
Added two AM_CONDITIONAL for handling if sgmltools and fig2dev are
available. HAVE_SGMLTOOLS is set if sgmltools is installed and
similar HAVE_FIG2DEV set for fig2dev.
Fixed error in 'uninstall' rule in Makefile.in.in in the po/
directory. It was using the $(PACKAGE) variable in the line to remove
the install po libraries. So it was looking for xine-lib.mo in all the
$(localedir)/<catalog>/LC_Messages directory. Switched this to look
for $(LIBNAME).mo files. This change matches the 'install' rule which
names the files libxine1.mo
CVS patchset: 6878
CVS date: 2004/08/08 00:34:17
Diffstat (limited to 'po')
-rw-r--r-- | po/Makefile.in.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/po/Makefile.in.in b/po/Makefile.in.in index c5400fe7a..c97225676 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -132,7 +132,7 @@ uninstall: for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed 's/\.gmo$$//'`; \ - rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(PACKAGE).mo; \ + rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(LIBNAME).mo; \ done if test "$(PACKAGE)" = "gettext"; then \ rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \ |