view test/autogen.sh @ 4260:42d28f92253b SDL-1.2

Removed -rpath from link line. We don't need to look in the library's install dir for dependencies; They are all system libraries that should be in other path lists anyhow. Fixes Bugzilla #499.
author Ryan C. Gordon <icculus@icculus.org>
date Mon, 28 Sep 2009 18:21:58 +0000
parents e566046c73d9
children
line wrap: on
line source

#!/bin/sh
#
# Regenerate configuration files
cp acinclude.m4 aclocal.m4
found=false
for autoconf in autoconf autoconf259 autoconf-2.59
do if which $autoconf >/dev/null 2>&1; then $autoconf && found=true; break; fi
done
if test x$found = xfalse; then
    echo "Couldn't find autoconf, aborting"
    exit 1
fi