all repos — fluxbox @ 7d2f7740d1dddf1017c0610ccbdd3fe9527c29d8

custom fork of the fluxbox windowmanager

LOCALE_PATH needed some extra magic to give an expanded value in the 
config.h file, but unexpanded through the make install process
simonb simonb
commit

7d2f7740d1dddf1017c0610ccbdd3fe9527c29d8

parent

864ba10163084f4c98b5e3ea7faa7511f4b9c274

1 files changed, 5 insertions(+), 2 deletions(-)

jump to
M configure.inconfigure.in

@@ -583,13 +583,16 @@ DEFAULT_INIT=\$\(prefix\)/share/fluxbox/init

) AC_SUBST(DEFAULT_INIT) +# we have to expand locale_path in the config.h file, but NOT in the makefiles! AC_ARG_WITH( locale, [ --with-locale=path location for nls files (PREFIX/share/fluxbox/nls)], - LOCALE_PATH=$with_locale_path, + LOCALE_PATH=$with_locale_path + AC_DEFINE_UNQUOTED(LOCALEPATH, "$LOCALE_PATH", "location for nls files") + , LOCALE_PATH=\$\(prefix\)/share/fluxbox/nls + AC_DEFINE_UNQUOTED(LOCALEPATH, "$prefix/share/fluxbox/nls", "location for nls files") ) -AC_DEFINE_UNQUOTED(LOCALEPATH, "$LOCALE_PATH", "location for nls files") AC_SUBST(LOCALE_PATH) AC_SUBST(program_prefix)