hstr/dist/1-dist.sh

23 lines
350 B
Bash
Raw Normal View History

2013-12-26 08:05:38 +08:00
#!/bin/bash
./clean.sh
cd ..
aclocal
automake --force-missing --add-missing
autoconf
rm -rvf autom*te.cache
if [ -d /usr/share/automake-1.11 ]
then
rm -vf depcomp install-sh missing
cp -vf /usr/share/automake-1.11/depcomp .
cp -vf /usr/share/automake-1.11/install-sh .
cp -vf /usr/share/automake-1.11/missing .
fi
2013-12-26 08:05:38 +08:00
cd dist
2013-12-26 08:05:38 +08:00
# eof