mirror of
https://github.com/dvorka/hstr.git
synced 2025-01-05 06:32:11 +08:00
22 lines
350 B
Bash
Executable file
22 lines
350 B
Bash
Executable file
#!/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
|
|
|
|
cd dist
|
|
|
|
# eof
|