diff options
author | unknown <gbichot@quadita2.mysql.com> | 2005-04-11 17:37:49 +0200 |
---|---|---|
committer | unknown <gbichot@quadita2.mysql.com> | 2005-04-11 17:37:49 +0200 |
commit | 08b89a2b7409f6638e96a8cffe9e8df9596b2527 (patch) | |
tree | 1e65d48b65f74e2050c91d300ecca170f640d7e7 /sql/share | |
parent | 6bf0fcd1365be34ad697b0998edb2bf9c7a47c66 (diff) | |
download | mariadb-git-08b89a2b7409f6638e96a8cffe9e8df9596b2527.tar.gz |
In configure.in, don't remove $AVAILABLE_LANGUAGES_ERRORS_RULES at end
because config.status may later need this file (if it does not find it
it won't incorporate dependencies of errmsg.sys in sql/share/Makefile) (thx Serg).
In sql/share/Makefile.am using "all:" leads to double-"all:" in Makefile (thx Konstantin).
sql/share/Makefile.am:
using "all:" leads to double-"all:" in Makefile (counting the auto-generated);
all-local is the standard way to add something to all: (thanks Konstantin)
configure.in:
Don't remove $AVAILABLE_LANGUAGES_ERRORS_RULES at end of configure.in
because config.status may later need this file (if it does not find it
it won't incorporate dependencies of errmsg.sys in sql/share/Makefile :( )
Diffstat (limited to 'sql/share')
-rw-r--r-- | sql/share/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/share/Makefile.am b/sql/share/Makefile.am index 662159a9c63..9f636e02535 100644 --- a/sql/share/Makefile.am +++ b/sql/share/Makefile.am @@ -9,7 +9,7 @@ dist-hook: $(INSTALL_DATA) $(srcdir)/charsets/README $(distdir)/charsets $(INSTALL_DATA) $(srcdir)/charsets/Index.xml $(distdir)/charsets -all: @AVAILABLE_LANGUAGES_ERRORS@ +all-local: @AVAILABLE_LANGUAGES_ERRORS@ # this is ugly, but portable @AVAILABLE_LANGUAGES_ERRORS_RULES@ |