diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-05-31 00:01:44 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-05-31 00:01:44 +0000 |
commit | e237df6bb9cb1f507a84ee30eae7604612086e3f (patch) | |
tree | 90cb0db2cd01700117fd19bceba094dfe46ac756 /po | |
parent | a1aa892c8a62fca89274e2d489b5516d5f8d0142 (diff) | |
download | xine-lib-e237df6bb9cb1f507a84ee30eae7604612086e3f.tar.gz xine-lib-e237df6bb9cb1f507a84ee30eae7604612086e3f.tar.bz2 |
Fix install problems in case configure was generated by autoconf >= 2.59c.
CVS patchset: 8000
CVS date: 2006/05/31 00:01:44
Diffstat (limited to 'po')
-rw-r--r-- | po/Makefile.in.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/po/Makefile.in.in b/po/Makefile.in.in index 3443fd9cc..1e8940bed 100644 --- a/po/Makefile.in.in +++ b/po/Makefile.in.in @@ -23,9 +23,13 @@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ +datarootdir = @datarootdir@ +ifeq ($(datarootdir),\@datarootdir\@) +datarootdir = @datadir@ +endif datadir = @datadir@ localedir = @XINE_LOCALEDIR@ -gettextsrcdir = $(datadir)/gettext/po +gettextsrcdir = $(datarootdir)/gettext/po install_sh = @install_sh@ mkdir_p = @mkdir_p@ |