diff options
Diffstat (limited to 'sly/config.scm.in')
-rw-r--r-- | sly/config.scm.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sly/config.scm.in b/sly/config.scm.in index 012483e..3a455cf 100644 --- a/sly/config.scm.in +++ b/sly/config.scm.in @@ -1,5 +1,5 @@ ;;; Sly -;;; Copyright (C) 2014 David Thompson <dthompson2@worcester.edu> +;;; Copyright (C) 2014, 2015 David Thompson <dthompson2@worcester.edu> ;;; ;;; Sly is free software: you can redistribute it and/or modify it ;;; under the terms of the GNU Lesser General Public License as @@ -22,12 +22,12 @@ ;;; Code: (define-module (sly config) - #:export (%pkgdatadir + #:export (%datadir %libfreeimage %libgslcblas)) -(define %pkgdatadir - (or (getenv "GUILE_2D_PKGDATADIR") "@pkgdatadir@")) +(define %datadir + (or (getenv "SLY_DATADIR") "@sly_prefix@@sly_datadir@/sly")) (define %libfreeimage "@LIBFREEIMAGE@") |