1#! /bin/sh
2# demo-pic.test - try configuring the ../demo subdirectory
3
4# Test script header.
5need_prefix=no
6if test -z "$srcdir"; then
7  srcdir=`echo "$0" | sed 's%/[^/]*$%%'`
8  test "$srcdir" = "$0" && srcdir=.
9  test "${VERBOSE+set}" != "set" && VERBOSE=yes
10fi
11. $srcdir/defs || exit 1
12
13# Maybe we have a VPATH build, in which case, create a new subdir.
14test -d ../demo || mkdir ../demo
15
16# Change to our build directory.
17cd ../demo || exit 1
18
19# Possibly clean up the distribution.
20if test -f Makefile; then
21  echo "= Running $make distclean in ../demo"
22  $make distclean
23fi
24rm -f config.cache
25
26# Configure the demonstration.
27echo "= Configuring in ../demo (prefix=$prefix) with --with-pic"
28${CONFIG_SHELL-/bin/sh} $srcdir/../demo/configure --srcdir=$srcdir/../demo --prefix=$prefix --build=$host --with-pic=yes || exit 1
29
30exit 0
31