blob: 3776d4112f3ed8cc7d0ae3101cc81406e8f9ba5b (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# simple script to redo the autotooling
cp /usr/share/libtool/config/ltmain.sh .
autoreconf && autoheader && aclocal && autoconf && automake --add-missing --copy
cp /usr/share/gettext/config.rpath .
cp /usr/share/glib-2.0/gettext/mkinstalldirs .
rm -r autom4te.cache
|