pre.sh at [84b2dbcb6f]

File build/pre.sh artifact 909960a64c part of check-in 84b2dbcb6f


#! /usr/bin/env bash

set -e
./autogen.sh
rm -rf aclocal

cat Makefile.in  | sed '/^mrproper:/,/^$/ d' > Makefile.in.new
cat Makefile.in.new > Makefile.in
rm -f Makefile.in.new

exit 0