1#! /bin/sh
2# demo-nofast.test - try configuring the ../demo subdirectory
3
4# Test script header.
5need_prefix=yes
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)"
28${CONFIG_SHELL-/bin/sh} $srcdir/../demo/configure --srcdir=$srcdir/../demo --prefix=$prefix --build=$host --enable-fast-install=no || exit 1
29
30if grep '^hardcode_action=relink' libtool > /dev/null; then
31  rm -f Makefile && exit 77
32fi
33
34exit 0
35