2 # Copyright (C) 2008-2012 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 # Make sure nobase_* works for python files.
22 cat >>configure.ac <<EOF
27 cat > Makefile.am <<'END'
29 my_PYTHON = one.py sub/base.py
30 nobase_my_PYTHON = two.py sub/nobase.py
32 test-install-data: install-data
33 find inst -print; : For debugging.
34 test -f inst/my/one.py
35 test -f inst/my/one.pyc
36 test -f inst/my/two.py
37 test -f inst/my/two.pyc
38 test -f inst/my/base.py
39 test -f inst/my/base.pyc
40 test -f inst/my/sub/nobase.py
41 test -f inst/my/sub/nobase.pyc
42 test ! -f inst/my/nobase.py
43 test ! -f inst/my/nobase.pyc
48 for file in one.py sub/base.py two.py sub/nobase.py; do
49 echo 'def one(): return 1' >$file
54 $AUTOMAKE --add-missing
56 ./configure --prefix "$(pwd)/inst" --program-prefix=p
59 $MAKE test-install-data
62 find inst/my -type f -print | grep . && Exit 1
66 # Likewise, in a VPATH build.
72 ../configure --prefix "$(pwd)/inst" --program-prefix=p
74 $MAKE test-install-data
76 find inst/my -type f -print | grep . && Exit 1