mirror of
https://git.enlightenment.org/enlightenment/enlightenment.git
synced 2026-04-21 12:35:48 +02:00
12 lines
184 B
Bash
Executable File
12 lines
184 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -rf autom4te.cache
|
|
rm -f aclocal.m4 ltmain.sh config.cache
|
|
|
|
autoreconf --symlink --install || exit 1
|
|
|
|
if [ -z "$NOCONFIGURE" ]; then
|
|
exec ./configure -C "$@"
|
|
fi
|
|
exit 0
|