Remove old gnucash and gnucash-valgrind override scripts.

* src/bin/overrides/gnucash
	* src/bin/overrides/gnucash-valgrind
	* src/bin/overrides/Makefile.am:
	  remove unnecessary override files that are no longer useful.



git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12345 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2006-01-13 21:57:06 +00:00
parent 0d571c1848
commit 9dd9d3a8f8
4 changed files with 5 additions and 46 deletions

View File

@ -5,6 +5,11 @@
In particular, we want to use $(srcdir)/gnc-svninfo.h
so that a build from a dist tarball has the svn version.
* src/bin/overrides/gnucash
* src/bin/overrides/gnucash-valgrind
* src/bin/overrides/Makefile.am:
remove unnecessary override files that are no longer useful.
2006-01-13 Neil Williams <linux@codehelp.co.uk>
* src/bin/test/test-version : Using Derek's fix to

View File

@ -1,7 +1,6 @@
gncoverridesdir = ${GNC_LIBEXECDIR}/overrides
# When you add a file here, please modify ../test/Makefile.am's overrides.stamp
gncoverrides_SCRIPTS = \
gnucash \
gnucash-env \
gnucash-make-guids \
gnucash-run-script \
@ -13,7 +12,6 @@ EXTRA_DIST = \
gnucash-build-env.in \
gnucash-make-guids \
gnucash-run-script \
gnucash-valgrind \
guile.in
noinst_DATA = gnucash-build-env

View File

@ -1,16 +0,0 @@
#!/bin/sh
exec gnucash-env guile -e main -s "$0" "$@"
!#
(use-modules (gnucash main))
(define (main args)
;; UGLY HACK -- FIXME -- code should be rewritten to not need this.
;; In particular, we should be using gnc_scm_lookup where we're using
;; gh_lookup or gh_eval_str now.
(set-current-module (resolve-module '(gnucash main)))
(gnc:main))
;; Local Variables:
;; mode: scheme
;; End:

View File

@ -1,28 +0,0 @@
#!/bin/sh
#
# This script runs the version of gnucash in the current build tree
# with the valgrind memory-allocation debugger. This is a slightly
# modified version of the overrides/gnucash shell script (and should
# be kept in sync with that).
#
# Other potentially useful options: --tool=memcheck --trace-children=yes
#
exec ./src/bin/overrides/gnucash-build-env valgrind -v \
--suppressions=./src/valgrind-gnucash.supp \
--error-limit=no \
guile -e main -s "$0" "$@"
!#
(use-modules (gnucash main))
(define (main args)
;; UGLY HACK -- FIXME -- code should be rewritten to not need this.
;; In particular, we should be using gnc_scm_lookup where we're using
;; gh_lookup or gh_eval_str now.
(set-current-module (resolve-module '(gnucash main)))
(gnc:main))
;; Local Variables:
;; mode: scheme
;; End: