mirror of
https://github.com/horst3180/arc-icon-theme
synced 2024-10-27 19:34:01 +00:00
14 lines
207 B
Bash
Executable File
14 lines
207 B
Bash
Executable File
#!/bin/sh
|
|
|
|
test -z "$srcdir" && srcdir=$(dirname "$0")
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
cwd=$(pwd)
|
|
cd "$srcdir"
|
|
|
|
mkdir -p m4
|
|
autoreconf --verbose --force --install || exit $?
|
|
|
|
cd "$cwd"
|
|
"$srcdir/configure" $@
|