1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00
cde/cde/autogen.sh
OBATA Akio 20c1768a19 Change to detect iconv implementation with autoconf
Use iconv.m4 (and required macros) form gettext-0.21.
2021-09-21 14:04:40 +09:00

14 lines
201 B
Bash
Executable file

#!/bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
cd "$srcdir"
libtoolize --force --automake
aclocal -I m4
autoconf -f
autoheader
automake --foreign --include-deps --add-missing
exit $?