mirror of
https://https.git.savannah.gnu.org/git/findutils.git
synced 2026-01-26 07:37:52 +00:00
* find/defs.h: Update copyright years. * find/finddata.c: Likewise. * find/sharefile.h: Likewise. * lib/buildcmd.h: Likewise. * lib/dircallback.h: Likewise. * lib/extendbuf.h: Likewise. * lib/findutils-version.h: Likewise. * lib/gnulib-version.h: Likewise. * lib/listfile.h: Likewise. * lib/nextelem.c: Likewise. * lib/nextelem.h: Likewise. * lib/printquoted.h: Likewise. * lib/regextype.h: Likewise. * lib/savedirinfo.h: Likewise. * lib/strspn.c: Likewise. * lib/waitpid.c: Likewise. * locate/locatedb.h: Likewise. * m4/mkinstalldirs.m4: Likewise. * m4/noreturn.m4: Likewise. * build-aux/check-testfiles.sh: Likewise. * build-aux/src-sniff.py: Likewise. * import-gnulib.sh: Likewise. * locate/testsuite/config/unix.exp: Likewise. * locate/updatedb.sh: Likewise. * xargs/testsuite/config/unix.exp: Likewise. * po/*.po: Likewise. Signed-off-by: James Youngman <jay@gnu.org>
42 lines
1.6 KiB
Plaintext
42 lines
1.6 KiB
Plaintext
dnl Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
|
|
dnl 2005, 2006, 2010 Free Software Foundation, Inc.
|
|
dnl This file is free software; the Free Software Foundation
|
|
dnl gives unlimited permission to copy and/or distribute it,
|
|
dnl with or without modifications, as long as this notice is preserved.
|
|
dnl
|
|
dnl This file can can be used in projects which are not available under
|
|
dnl the GNU General Public License or the GNU Library General Public
|
|
dnl License but which still want to provide support for the GNU gettext
|
|
dnl functionality.
|
|
dnl Please note that the actual code of the GNU gettext library is covered
|
|
dnl by the GNU Library General Public License, and the rest of the GNU
|
|
dnl gettext package package is covered by the GNU General Public License.
|
|
dnl They are *not* in the public domain.
|
|
|
|
dnl Authors:
|
|
dnl Ulrich Drepper <drepper@cygnus.com>, 1995-2000.
|
|
dnl Bruno Haible <haible@clisp.cons.org>, 2000-2003.
|
|
# Originally taken from nls.m4 serial 2 (gettext-0.14.3)
|
|
|
|
AC_PREREQ(2.50)
|
|
|
|
AC_DEFUN([AM_MKINSTALLDIRS],
|
|
[
|
|
dnl Tell automake >= 1.10 to complain if mkinstalldirs is missing.
|
|
m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([mkinstalldirs])])
|
|
dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly
|
|
dnl find the mkinstalldirs script in another subdir but $(top_srcdir).
|
|
dnl Try to locate it.
|
|
MKINSTALLDIRS=
|
|
if test -n "$ac_aux_dir"; then
|
|
case "$ac_aux_dir" in
|
|
/*) MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ;;
|
|
*) MKINSTALLDIRS="\$(top_builddir)/$ac_aux_dir/mkinstalldirs" ;;
|
|
esac
|
|
fi
|
|
if test -z "$MKINSTALLDIRS"; then
|
|
MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
|
|
fi
|
|
AC_SUBST(MKINSTALLDIRS)
|
|
])
|