No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gettext / gettext-tools / examples / hello-sh / configure.ac
blob2a1de3045e6589cfe74c01a2c89e0185e166ad6f
1 dnl Example for use of GNU gettext.
2 dnl Copyright (C) 2003 Free Software Foundation, Inc.
3 dnl This file is in the public domain.
4 dnl
5 dnl Configuration file - processed by autoconf.
7 AC_INIT
8 AC_CONFIG_SRCDIR(hello.sh)
9 AM_INIT_AUTOMAKE(hello-sh, 0)
11 dnl The installed program must know where to find its message catalogs.
12 dnl Unfortunately, prefix gets only finally determined at the end of configure.
13 if test "X$prefix" = "XNONE"; then
14   final_prefix="$ac_default_prefix"
15 else
16   final_prefix="$prefix"
18 save_prefix="$prefix"
19 prefix="$final_prefix"
20 eval "localedir=\"${datadir}/locale\""
21 prefix="$save_prefix"
22 AC_SUBST(localedir)
24 dnl Support for the po directory.
25 AM_PO_SUBDIRS
27 AC_CONFIG_FILES([Makefile])
28 AC_CONFIG_FILES([hello:hello.sh], [chmod a+x hello])
29 AC_CONFIG_FILES([m4/Makefile])
30 AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE])
31 AC_OUTPUT