mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
12 lines
166 B
Bash
Executable File
12 lines
166 B
Bash
Executable File
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
(
|
|
cd $srcdir
|
|
cat macros/gnome.m4 mc-aclocal.m4 gettext.m4 > aclocal.m4
|
|
autoheader
|
|
autoconf
|
|
)
|
|
|
|
$srcdir/configure $*
|