mk_rel.bash knows about the new Makefile.
This commit is contained in:
parent
13f63a1fa6
commit
1ad15656fa
1 changed files with 3 additions and 6 deletions
|
@ -3,7 +3,7 @@
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
function configure_ac_ver_ok {
|
function configure_ac_ver_ok {
|
||||||
cat configure.ac | grep "${1}" || return 1
|
cat Makefile | grep "VERSION=${1}" || return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
function magit_el_ver_ok {
|
function magit_el_ver_ok {
|
||||||
|
@ -43,12 +43,9 @@ if ! configure_ac_ver_ok "$tag"; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# clean up if we need to
|
# clean up if we need to
|
||||||
[ -f Makefile ] && make distclean
|
make clean
|
||||||
|
|
||||||
./autogen.sh
|
|
||||||
|
|
||||||
./configure
|
|
||||||
|
|
||||||
make dist
|
make dist
|
||||||
|
|
||||||
|
# back to master
|
||||||
git co master
|
git co master
|
||||||
|
|
Loading…
Reference in a new issue