mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-01-18 14:16:00 +08:00
18 lines
356 B
Bash
Executable File
18 lines
356 B
Bash
Executable File
#! /bin/sh
|
|
# demo-static.test - try configuring the demo subdirectory
|
|
|
|
# Test script header.
|
|
if test -z "$srcdir"; then
|
|
srcdir=`echo "$0" | sed 's%/[^/]*$%%'`
|
|
test "$srcdir" = "$0" && srcdir=.
|
|
fi
|
|
. $srcdir/defs || exit 1
|
|
|
|
func_mkprefixdir
|
|
func_cd "demo"
|
|
func_make_distclean
|
|
func_configure "--disable-shared"
|
|
func_check_static_shared "yes" "no"
|
|
|
|
exit 0
|