* automake.in (scan_aclocal_m4): Define ACLOCAL_M4 even in
[automake.git] / tests / python2.test
blobfb74145ee12f2897b0a8aced8bc5a53232a16796
1 #! /bin/sh
2 # Copyright (C) 2002 Free Software Foundation, Inc.
4 # This file is part of GNU Automake.
6 # GNU Automake is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
11 # GNU Automake is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with autoconf; see the file COPYING. If not, write to
18 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
21 # Make sure that Automake suggests using AM_PATH_PYTHON.
23 . ./defs || exit 1
25 set -e
27 echo 1
28 # pythondir not defined
30 cat > Makefile.am <<'END'
31 PYTHON = x
32 python_PYTHON = foo.py
33 END
35 $ACLOCAL
36 $AUTOMAKE -a 2>stderr && exit 1
37 cat stderr
38 grep AM_PATH_PYTHON stderr
40 echo 2
41 # pkgpythondir not defined
43 cat > Makefile.am <<'END'
44 PYTHON = x
45 pkgpython_PYTHON = foo.py
46 END
48 $ACLOCAL
49 $AUTOMAKE -a 2>stderr && exit 1
50 cat stderr
51 grep AM_PATH_PYTHON stderr
54 echo 3
55 # pyexecdir not defined
57 cat > Makefile.am <<'END'
58 PYTHON = x
59 pyexec_PYTHON = foo.py
60 END
62 $ACLOCAL
63 $AUTOMAKE -a 2>stderr && exit 1
64 cat stderr
65 grep AM_PATH_PYTHON stderr
68 echo 4
69 # pkgpyexecdir not defined
71 cat > Makefile.am <<'END'
72 PYTHON = x
73 pkgpyexec_PYTHON = foo.py
74 END
76 $ACLOCAL
77 $AUTOMAKE -a 2>stderr && exit 1
78 cat stderr
79 grep AM_PATH_PYTHON stderr
82 echo 5
83 # PYTHON not defined.
85 cat > Makefile.am <<'END'
86 pkgpyexecdir = /here/we/go
87 pkgpyexec_PYTHON = foo.py
88 END
90 $ACLOCAL
91 $AUTOMAKE -a 2>stderr && exit 1
92 cat stderr
93 grep AM_PATH_PYTHON stderr
96 echo 6
97 # Ok.
99 cat > Makefile.am <<'END'
100 PYTHON = x
101 pkgpyexecdir = /here/we/go
102 pkgpyexec_PYTHON = foo.py
105 $ACLOCAL
106 $AUTOMAKE -a
107 test -f py-compile
110 echo 7
111 # Ok.
113 cat > Makefile.am <<'END'
114 PYTHON = x
115 fubardir = /here/we/go
116 fubar_PYTHON = foo.py
119 $ACLOCAL
120 $AUTOMAKE -a