2 # Copyright (C) 2010, 2011 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 # Test that POSIX variable expansion `$(var:str=rpl)' works when used
18 # with the LIBRARIES primary in a "simple" way.
19 # Keep this in sync with sister test `posixsubst-ltlibraries.test'.
24 cat >> configure.
in << 'END'
31 cat > Makefile.am
<< 'END'
32 foolibs
= libfoo1 libfoo2
35 # Also try an empty match suffix, to ensure that the `:=' in there is
36 # not confused by the parser with an unportable assignment operator.
37 lib_LIBRARIES
= $
(foolibs
:=.a
) $
(barlibs
:z
=r.a
)
40 echo 'int bar(void) { return 0; }' > $@
41 CLEANFILES
= libbar.c
# For FreeBSD make.
45 test -f $
(prefix
)/lib
/libfoo1.a
46 test -f $
(prefix
)/lib
/libfoo2.a
47 test -f $
(prefix
)/lib
/libbar.a
50 echo 'int bar1(void) { return 0; }' > libfoo1.c
51 echo 'int bar2(void) { return 0; }' > libfoo2.c
58 .
/configure
--prefix="$cwd/_inst"