dosemu2/autogen.sh
geos_one 17bb5d7efa
Some checks failed
Build / build (push) Has been cancelled
New upstream version 2.0-0.9
2025-08-14 09:28:49 +02:00

12 lines
246 B
Bash
Executable File

#!/bin/sh
DIR=$(dirname $0 | xargs realpath)
echo "Generating toplevel configure script in $DIR..."
rm -f aclocal.m4
if ! autoreconf -I m4 --install --force $DIR; then
echo "Failure!"
exit 1
fi
echo
echo "Done, now run $DIR/default-configure"