diff options
author | Bruno Haible <bruno@clisp.org> | 2003-11-13 15:31:16 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:11:14 +0200 |
commit | 3dafc5705257b0c37eb7f3dd441af5642dcdbf74 (patch) | |
tree | ae03562c5691fe6b88999f9ed69d787c4b07ec76 /gettext-tools | |
parent | 7fe6b1babc1b98e0636410876eb871e69a6ac2fc (diff) | |
download | external_gettext-3dafc5705257b0c37eb7f3dd441af5642dcdbf74.zip external_gettext-3dafc5705257b0c37eb7f3dd441af5642dcdbf74.tar.gz external_gettext-3dafc5705257b0c37eb7f3dd441af5642dcdbf74.tar.bz2 |
Make autopoint usable in KDE/kdevelop projects.
Diffstat (limited to 'gettext-tools')
-rw-r--r-- | gettext-tools/misc/ChangeLog | 5 | ||||
-rw-r--r-- | gettext-tools/misc/autopoint.in | 7 |
2 files changed, 11 insertions, 1 deletions
diff --git a/gettext-tools/misc/ChangeLog b/gettext-tools/misc/ChangeLog index 02b99f9..b09f7b5 100644 --- a/gettext-tools/misc/ChangeLog +++ b/gettext-tools/misc/ChangeLog @@ -1,3 +1,8 @@ +2003-11-08 Bruno Haible <bruno@clisp.org> + + * autopoint.in: Allow configure.in.in to be used instead of + configure.in. + 2003-08-11 Bruno Haible <bruno@clisp.org> * autopoint.in: When local files have been modified, create a .diff diff --git a/gettext-tools/misc/autopoint.in b/gettext-tools/misc/autopoint.in index ee9075c..f3ade5d 100644 --- a/gettext-tools/misc/autopoint.in +++ b/gettext-tools/misc/autopoint.in @@ -216,7 +216,12 @@ else if test -f configure.ac; then configure_in=configure.ac else - func_fatal_error "Missing configure.in or configure.ac, please cd to your package first." + # KDE specific convention: configure.in.in + if test -f configure.in.in; then + configure_in=configure.in.in + else + func_fatal_error "Missing configure.in or configure.ac, please cd to your package first." + fi fi fi |