mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
386 B
21 lines
386 B
#!/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
|
|
qpopd
|
|
|
|
prepare
|
|
_INSTALL_WFSDIR=`win_fs_path $INSTALL_DIR`
|
|
_INSTALL_UDIR=`unix_path $INSTALL_DIR`
|
|
|
|
make_install "$@"
|