#! /bin/sh# mdemo-inst.test - try installing from the ../mdemo subdirectory# Test script header.need_prefix=yesif test -z "$srcdir"; thensrcdir=`echo "$0" | sed 's%/[^/]*$%%'`test "$srcdir" = "$0" && srcdir=.test "${VERBOSE+set}" != "set" && VERBOSE=yesfi. $srcdir/defs || exit 1# Check that things are built.if test -f ../mdemo/mdemo$EXEEXT; then :elseecho "You must run mdemo-make.test before $0" 1>&2exit 77fi# Change to our build directory.cd ../mdemo || exit 1echo "= Running $make install in ../mdemo"$make install || exit 1echo "= Executing installed programs"path_old=$PATHPATH=$prefix/lib:$PATHstatus=0if $prefix/bin/mdemo_static $prefix/lib/foo1.la $prefix/lib/libfoo2.la; then :elseecho "$0: cannot execute $prefix/bin/mdemo_static" 1>&2status=1fiif $prefix/bin/mdemo $prefix/lib/foo1.la $prefix/lib/libfoo2.la; then :elseecho "$0: cannot execute $prefix/bin/mdemo" 1>&2# Simple check to see if they are superuser.if test -w /; then :elseecho "You may need to run $0 as the superuser."fistatus=1fiPATH=$path_oldexit $status