mirror of https://github.com/Gnucash/gnucash
Make_install.sh can be called in any build directory and will execute `make install` and all the necessary extra steps after that. Also, make prepare and finish ordinary steps that can be blocked and inserted at will. Add reset_steps. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16928 57a11ea4-9604-0410-9ed3-97b8803252fd2.4
parent
4e87d41e05
commit
9ea5112f6c
@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
function qpushd() { pushd "$@" >/dev/null; }
|
||||
function qpopd() { popd >/dev/null; }
|
||||
function unix_path() { echo "$*" | sed 's,^\([A-Za-z]\):,/\1,;s,\\,/,g'; }
|
||||
|
||||
qpushd "$(dirname $(unix_path "$0"))"
|
||||
. functions.sh
|
||||
. defaults.sh
|
||||
|
||||
reset_steps
|
||||
. install.sh
|
||||
|
||||
prepare
|
||||
qpopd
|
||||
make_install
|
||||
Loading…
Reference in new issue