Configure scm module directory.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@5757 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas 2001-11-01 10:32:01 +00:00
parent 4401b44ed1
commit 84c723d74b

View File

@ -15,6 +15,7 @@ Options:
[--libs]
[--cflags]
[--ld-library-path]
[--scm-module-dir]
Libraries:
engine
network-utils
@ -39,9 +40,6 @@ while test $# -gt 0; do
esac
case $1 in
--ld-library-path)
echo_ld_library_path=yes
;;
--prefix=*)
prefix=$optarg
if test $exec_prefix_set = no ; then
@ -68,6 +66,12 @@ while test $# -gt 0; do
--libs)
echo_libs=yes
;;
--ld-library-path)
echo_ld_library_path=yes
;;
--scm-module-dir)
echo_scm_module_dir=yes
;;
engine)
lib_engine=yes
any_lib=yes
@ -203,3 +207,7 @@ if test "$echo_ld_library_path" = "yes"; then
path="$libdir:$GNC_LIBDIR:$GNC_MODULE_DIR"
echo $path
fi
if test "$echo_scm_module_dir" = "yes"; then
echo $GNC_SHAREDIR/guile-modules
fi