1
0
Fork 0
xdg-user-dirs/autogen.sh
Daniel Baumann 8628cbbff3
Adding upstream version 0.18.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 22:55:16 +02:00

14 lines
208 B
Bash
Executable file

#!/bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd $srcdir
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
if test -z "$NOCONFIGURE"; then
$srcdir/configure "$@"
fi