2001-06-11 Dave Peticolas <dave@krondo.com>

* src/scm/Makefile.am: same as below

	* src/scm/price-quotes.scm: same as below

	* src/scm/process.scm: re-modulize process.scm


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4622 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2001-06-11 07:11:37 +00:00
parent aeeed6b785
commit 17b3a7ef7d
4 changed files with 14 additions and 8 deletions

View File

@ -1,3 +1,11 @@
2001-06-11 Dave Peticolas <dave@krondo.com>
* src/scm/Makefile.am: same as below
* src/scm/price-quotes.scm: same as below
* src/scm/process.scm: re-modulize process.scm
2001-06-10 Christian Stimming <stimming@tuhh.de>
* de.po: updated German translation.

View File

@ -2,9 +2,9 @@
SUBDIRS = gnumeric printing qif-import report
gncscmdir = ${GNC_SCM_INSTALL_DIR}
#gncscmmoddir = ${GNC_SHAREDIR}/guile-modules/gnucash
gncscmmoddir = ${GNC_SHAREDIR}/guile-modules/gnucash
#gncscmmod_DATA = process.scm
gncscmmod_DATA = process.scm
gnc_autogen_scm_files = \
bootstrap.scm
@ -44,7 +44,6 @@ gnc_regular_scm_files = \
path.scm \
prefs.scm \
price-quotes.scm \
process.scm \
report.scm \
report-html.scm \
report-utilities.scm \

View File

@ -20,11 +20,10 @@
;;; Boston, MA 02111-1307, USA gnu@gnu.org
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;(use-modules (gnucash process))
(use-modules (gnucash process))
(gnc:support "price-quotes.scm")
(gnc:depend "process.scm")
(gnc:depend "gnc-numeric.scm")
(gnc:depend "utilities.scm")
(gnc:depend "engine-utilities.scm")

View File

@ -20,10 +20,10 @@
;;; Boston, MA 02111-1307, USA gnu@gnu.org
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;(define-module (gnucash process))
(define-module (gnucash process))
;(export gnc:run-sub-process)
;(export gnc:cleanup-sub-process)
(export gnc:run-sub-process)
(export gnc:cleanup-sub-process)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;