mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-16 18:25:11 -06:00
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1707 57a11ea4-9604-0410-9ed3-97b8803252fd
20 lines
567 B
Plaintext
20 lines
567 B
Plaintext
# You can debug gnucash by running gdb as "gdb -x gnucash.gdb-cmds"
|
|
# and then executing "run-gnucash somefile".
|
|
#
|
|
# Secrets: gdb requires that parens be escaped as well as quotes ...
|
|
|
|
THESE ARE BROKEN We need a new strategy that handles the GNC_ envt vars.
|
|
|
|
file gnucash.bin
|
|
|
|
define run-gnucash
|
|
set args --debug \
|
|
--startup-dir ./share/scm/startup \
|
|
--share-dir ./share \
|
|
--config-dir ./etc \
|
|
--load-path \(\"\(./share/scm\)\"\) \
|
|
--doc-path \(\"\(./Docs\)\"\"\(./Reports\)\"\) \
|
|
$arg0
|
|
run
|
|
end
|