2 # Copyright (C) 2011-2013 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # Check that the user can override the tar program used by "make dist"
18 # at runtime, by redefining the 'TAR' environment variable.
19 # NOTE: currently this works only when the tar format used is 'v7'
20 # (which is the default one).
24 cwd=$(pwd) || fatal_ "getting current working directory"
26 echo AC_OUTPUT >> configure.ac
30 echo $1 > am--tar-has-run
36 cat > Makefile.am <<'END'
38 ls -l ;: For debugging.
39 test -f am--tar-has-run
40 CLEANFILES = am--tar-has-run
48 clean_temp () { rm -f *.tar.* *has-run*; }
51 test -f $distdir.tar.gz
52 ls | grep has-run && exit 1
56 TAR="$cwd/am--tar foo" $MAKE distcheck
57 test -f $distdir.tar.gz
58 test "$(cat am--tar-has-run)" = foo
63 # Creative use of eval to pacify maintainer checks.
64 eval \$'MAKE dist "TAR=./am--tar mu"'
65 test -f $distdir.tar.gz
66 test "$(cat am--tar-has-run)" = mu