Fix config.py
authorPhilip Chimento <philip.chimento@gmail.com>
Sat, 15 Sep 2012 15:39:15 +0000 (17:39 +0200)
committerPhilip Chimento <philip.chimento@gmail.com>
Sat, 15 Sep 2012 15:39:15 +0000 (17:39 +0200)
@DATADIRNAME@ = lib all of a sudden?! Now we use the proper
@datarootdir@ setting.

player/config.py.in

index 6e534ffdd1a46d3798adfe68ec09383eb1d76026..260ac8d212cf11ab1c68e8ca22bf958b05be7ca7 100644 (file)
@@ -1,7 +1,8 @@
 PACKAGE_VERSION = '''@PACKAGE_VERSION@'''
 GETTEXT_PACKAGE = '''@GETTEXT_PACKAGE@'''
-PACKAGE_DATA_DIR = '''@prefix@/@DATADIRNAME@/@PACKAGE@'''
+datarootdir = '''@datarootdir@'''.replace('${prefix}', '''@prefix@''')
+PACKAGE_DATA_DIR = datarootdir + '''/@PACKAGE@'''
 PACKAGE_SRC_DIR = '''@srcdir@'''
-PACKAGE_LOCALE_DIR = '''@prefix@/@DATADIRNAME@/locale'''
+PACKAGE_LOCALE_DIR = datarootdir + '/locale'
 ENABLE_NLS = ('''@USE_NLS@''' == 'yes')
 DEBUG = ('-DDEBUG' in '''@CPPFLAGS@''')