Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove unnecessary check in buildconf.sh.
  • Loading branch information
kr committed Nov 19, 2008
1 parent 382723c commit b637898
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions buildconf.sh
@@ -1,34 +1,14 @@
#!/bin/sh

eval `grep '^BEAN_VERSION=' configure.in`
case "$BEAN_VERSION" in
*-g*)
rebuildok=1
;;
*)
rebuildok=0
;;
esac

clean=0

while test $# -gt 0; do
if test "$1" = "--force"; then
rebuildok=1
echo "Forcing buildconf"
fi
if test "$1" = "--clean"; then
clean=1
fi
shift
done

if test "$rebuildok" = "0"; then
echo "You should not run buildconf in a release package."
echo "use buildconf --force to override this check."
exit 1
fi

if test "$clean" = "1"; then
echo "Cleaning autogenerated files"
${MAKE:-make} -s -f build.mk clean
Expand Down

0 comments on commit b637898

Please sign in to comment.