diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2008-09-21 21:37:03 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-21 21:37:03 +0200 |
commit | 0fa28d88fa06aa3b838b75d4b881833007cb6a98 (patch) | |
tree | 0d28d31da9eb4f22ed806d04b933b63dee3db032 /configure.ac | |
parent | 8d3a6e1946b4bc1b5057be3b93c89796184c22bb (diff) | |
download | mpd-0fa28d88fa06aa3b838b75d4b881833007cb6a98.tar.gz mpd-0fa28d88fa06aa3b838b75d4b881833007cb6a98.tar.xz mpd-0fa28d88fa06aa3b838b75d4b881833007cb6a98.zip |
generate po/Makefile.in instead of bundling it
The previously bundled po/Makefile.in would use predefined variables that
should be set by the configure script. f.e., $prefix was defined as
/usr/local, and caused po files to always be installed there instead of in
the prefix given to ./configure.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 8a83e0bc3..21b6d56e6 100644 --- a/configure.ac +++ b/configure.ac @@ -316,5 +316,5 @@ AC_ARG_WITH([default-timedisplay_type], [DEFAULT_TIMEDISPLAY_TYPE="elapsed"]) AC_MSG_RESULT([$DEFAULT_TIMEDISPLAY_TYPE]) AC_DEFINE_UNQUOTED([DEFAULT_TIMEDISPLAY_TYPE], ["$DEFAULT_TIMEDISPLAY_TYPE"], [Default way to display time, either 'elapsed' or 'remaining']) -AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile po/Makefile]) +AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile po/Makefile.in po/Makefile]) AC_OUTPUT |