source: trunk/essentials/sys-devel/automake-1.7/tests/python2.test

Last change on this file was 3120, checked in by bird, 18 years ago

automake 1.7.9

File size: 2.0 KB
Line 
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
25set -e
26
27echo 1
28# pythondir not defined
29
30cat > Makefile.am <<'END'
31PYTHON = x
32python_PYTHON = foo.py
33END
34
35$ACLOCAL
36$AUTOMAKE -a 2>stderr && exit 1
37cat stderr
38grep AM_PATH_PYTHON stderr
39
40echo 2
41# pkgpythondir not defined
42
43cat > Makefile.am <<'END'
44PYTHON = x
45pkgpython_PYTHON = foo.py
46END
47
48$ACLOCAL
49$AUTOMAKE -a 2>stderr && exit 1
50cat stderr
51grep AM_PATH_PYTHON stderr
52
53
54echo 3
55# pyexecdir not defined
56
57cat > Makefile.am <<'END'
58PYTHON = x
59pyexec_PYTHON = foo.py
60END
61
62$ACLOCAL
63$AUTOMAKE -a 2>stderr && exit 1
64cat stderr
65grep AM_PATH_PYTHON stderr
66
67
68echo 4
69# pkgpyexecdir not defined
70
71cat > Makefile.am <<'END'
72PYTHON = x
73pkgpyexec_PYTHON = foo.py
74END
75
76$ACLOCAL
77$AUTOMAKE -a 2>stderr && exit 1
78cat stderr
79grep AM_PATH_PYTHON stderr
80
81
82echo 5
83# PYTHON not defined.
84
85cat > Makefile.am <<'END'
86pkgpyexecdir = /here/we/go
87pkgpyexec_PYTHON = foo.py
88END
89
90$ACLOCAL
91$AUTOMAKE -a 2>stderr && exit 1
92cat stderr
93grep AM_PATH_PYTHON stderr
94
95
96echo 6
97# Ok.
98
99cat > Makefile.am <<'END'
100PYTHON = x
101pkgpyexecdir = /here/we/go
102pkgpyexec_PYTHON = foo.py
103END
104
105$ACLOCAL
106$AUTOMAKE -a
107test -f py-compile
108
109
110echo 7
111# Ok.
112
113cat > Makefile.am <<'END'
114PYTHON = x
115fubardir = /here/we/go
116fubar_PYTHON = foo.py
117END
118
119$ACLOCAL
120$AUTOMAKE -a
Note: See TracBrowser for help on using the repository browser.