Skip to content

Commit

Permalink
Merge remote-tracking branch 'shortword/master' into bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
viraptor committed Apr 24, 2019
2 parents 7958ad7 + 3c034bf commit 81009fd
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions bootstrap
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
#!/bin/bash

set -e

rm -rf config.cache autom4te*.cache
#autoreconf --install

case `uname` in Darwin*) glibtoolize --automake ;;
*) libtoolize --automake ;; esac
case `uname` in
Darwin*)
glibtoolize --automake ;;
*)
libtoolize --automake ;;
esac

aclocal
autoconf
autoheader
Expand Down

0 comments on commit 81009fd

Please sign in to comment.