mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-29 04:04:07 -06:00
b53205e903
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18961 57a11ea4-9604-0410-9ed3-97b8803252fd
21 lines
386 B
Bash
21 lines
386 B
Bash
#!/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 "$@"
|