X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=t%2Fposixsubst-ltlibraries.sh;h=3111954d6fbad819519ee46f03d1f4d235f98553;hb=c6cc38027572445a25d749db99473f82521cc79e;hp=6a4cbd551a439010728ce3cbe1099d0f008091e3;hpb=326ff45b8da46ab409b4a69d4861ad3211f0e132;p=platform%2Fupstream%2Fautomake.git diff --git a/t/posixsubst-ltlibraries.sh b/t/posixsubst-ltlibraries.sh index 6a4cbd5..3111954 100755 --- a/t/posixsubst-ltlibraries.sh +++ b/t/posixsubst-ltlibraries.sh @@ -16,10 +16,10 @@ # Test that POSIX variable expansion '$(var:str=rpl)' works when used # with the LTLIBRARIES primary in a "simple" way. -# Keep this in sync with sister test 'posixsubst-libraries.test'. +# Keep this in sync with sister test 'posixsubst-libraries.sh'. required='cc libtool libtoolize' -. ./defs || Exit 1 +. ./defs || exit 1 cat >> configure.ac << 'END' AC_PROG_CC @@ -41,10 +41,10 @@ libbar.c: CLEANFILES = libbar.c # For FreeBSD make. installcheck-local: - ls -l $(prefix)/lib - test -f $(prefix)/lib/libfoo1.la - test -f $(prefix)/lib/libfoo2.la - test -f $(prefix)/lib/libbar.la + ls -l $(libdir) + test -f $(libdir)/libfoo1.la + test -f $(libdir)/libfoo2.la + test -f $(libdir)/libbar.la END echo 'int bar1(void) { return 0; }' > libfoo1.c @@ -55,7 +55,7 @@ $ACLOCAL $AUTOCONF $AUTOMAKE -a -cwd=`pwd` || Exit 1 +cwd=$(pwd) || fatal_ "getting current working directory" ./configure --prefix="$cwd/_inst" $MAKE test -f libfoo2.c