mariadb/sql/share/Makefile.am
unknown f0a33e62a1 Handle AVAILABLE_LANGUAGES more portably.
Fix a typo in BDB configuration.


acinclude.m4:
  Fix typo (missing "test")
configure.in:
  Handle AVAILABLE_LANGUAGES more portably.
sql/share/Makefile.am:
  Handle AVAILABLE_LANGUAGES more portably.
2001-01-16 21:36:43 +02:00

27 lines
876 B
Makefile

## Process this file with automake to create Makefile.in
# This requires gnu cp at distribution time.
dist-hook:
for lang in @AVAILABLE_LANGUAGES@ charsets; \
do cp -a $(srcdir)/$$lang $(distdir); done
all: @AVAILABLE_LANGUAGES_ERRORS@
# this is ugly, but portable
@AVAILABLE_LANGUAGES_ERRORS_RULES@
install-data-local:
for lang in @AVAILABLE_LANGUAGES@; \
do \
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/$$lang; \
$(INSTALL_DATA) $(srcdir)/$$lang/errmsg.sys \
$(DESTDIR)$(pkgdatadir)/$$lang/errmsg.sys; \
$(INSTALL_DATA) $(srcdir)/$$lang/errmsg.txt \
$(DESTDIR)$(pkgdatadir)/$$lang/errmsg.txt; \
done
$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/charsets
(for f in $(srcdir)/charsets/Index $(srcdir)/charsets/README $(srcdir)/charsets/*.conf; \
do \
n=`basename $$f`; \
$(INSTALL_DATA) $$f $(DESTDIR)$(pkgdatadir)/charsets/$$n; \
done)