1 | #! /bin/sh
|
---|
2 | # Copyright (C) 2002 Free Software Foundation, Inc.
|
---|
3 | #
|
---|
4 | # This file is part of GNU Automake.
|
---|
5 | #
|
---|
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.
|
---|
10 | #
|
---|
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.
|
---|
15 | #
|
---|
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.
|
---|
20 |
|
---|
21 | # Make sure that Automake suggests using AM_PATH_PYTHON.
|
---|
22 |
|
---|
23 | . ./defs || exit 1
|
---|
24 |
|
---|
25 | set -e
|
---|
26 |
|
---|
27 | echo 1
|
---|
28 | # pythondir not defined
|
---|
29 |
|
---|
30 | cat > Makefile.am <<'END'
|
---|
31 | PYTHON = x
|
---|
32 | python_PYTHON = foo.py
|
---|
33 | END
|
---|
34 |
|
---|
35 | $ACLOCAL
|
---|
36 | $AUTOMAKE -a 2>stderr && exit 1
|
---|
37 | cat stderr
|
---|
38 | grep AM_PATH_PYTHON stderr
|
---|
39 |
|
---|
40 | echo 2
|
---|
41 | # pkgpythondir not defined
|
---|
42 |
|
---|
43 | cat > Makefile.am <<'END'
|
---|
44 | PYTHON = x
|
---|
45 | pkgpython_PYTHON = foo.py
|
---|
46 | END
|
---|
47 |
|
---|
48 | $ACLOCAL
|
---|
49 | $AUTOMAKE -a 2>stderr && exit 1
|
---|
50 | cat stderr
|
---|
51 | grep AM_PATH_PYTHON stderr
|
---|
52 |
|
---|
53 |
|
---|
54 | echo 3
|
---|
55 | # pyexecdir not defined
|
---|
56 |
|
---|
57 | cat > Makefile.am <<'END'
|
---|
58 | PYTHON = x
|
---|
59 | pyexec_PYTHON = foo.py
|
---|
60 | END
|
---|
61 |
|
---|
62 | $ACLOCAL
|
---|
63 | $AUTOMAKE -a 2>stderr && exit 1
|
---|
64 | cat stderr
|
---|
65 | grep AM_PATH_PYTHON stderr
|
---|
66 |
|
---|
67 |
|
---|
68 | echo 4
|
---|
69 | # pkgpyexecdir not defined
|
---|
70 |
|
---|
71 | cat > Makefile.am <<'END'
|
---|
72 | PYTHON = x
|
---|
73 | pkgpyexec_PYTHON = foo.py
|
---|
74 | END
|
---|
75 |
|
---|
76 | $ACLOCAL
|
---|
77 | $AUTOMAKE -a 2>stderr && exit 1
|
---|
78 | cat stderr
|
---|
79 | grep AM_PATH_PYTHON stderr
|
---|
80 |
|
---|
81 |
|
---|
82 | echo 5
|
---|
83 | # PYTHON not defined.
|
---|
84 |
|
---|
85 | cat > Makefile.am <<'END'
|
---|
86 | pkgpyexecdir = /here/we/go
|
---|
87 | pkgpyexec_PYTHON = foo.py
|
---|
88 | END
|
---|
89 |
|
---|
90 | $ACLOCAL
|
---|
91 | $AUTOMAKE -a 2>stderr && exit 1
|
---|
92 | cat stderr
|
---|
93 | grep AM_PATH_PYTHON stderr
|
---|
94 |
|
---|
95 |
|
---|
96 | echo 6
|
---|
97 | # Ok.
|
---|
98 |
|
---|
99 | cat > Makefile.am <<'END'
|
---|
100 | PYTHON = x
|
---|
101 | pkgpyexecdir = /here/we/go
|
---|
102 | pkgpyexec_PYTHON = foo.py
|
---|
103 | END
|
---|
104 |
|
---|
105 | $ACLOCAL
|
---|
106 | $AUTOMAKE -a
|
---|
107 | test -f py-compile
|
---|
108 |
|
---|
109 |
|
---|
110 | echo 7
|
---|
111 | # Ok.
|
---|
112 |
|
---|
113 | cat > Makefile.am <<'END'
|
---|
114 | PYTHON = x
|
---|
115 | fubardir = /here/we/go
|
---|
116 | fubar_PYTHON = foo.py
|
---|
117 | END
|
---|
118 |
|
---|
119 | $ACLOCAL
|
---|
120 | $AUTOMAKE -a
|
---|