# HG changeset patch # User jwe # Date 821166184 0 # Node ID e19fe88ccba0ecac15f53cabe839b4d72c614fd4 # Parent 36df074f527465c51cfe094552358193e22f1acc [project @ 1996-01-09 05:42:37 by jwe] diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -20,7 +20,7 @@ ### along with Octave; see the file COPYING. If not, write to the Free ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -AC_REVISION($Revision: 1.148 $) +AC_REVISION($Revision: 1.150 $) AC_PREREQ(2.0) AC_INIT(src/octave.cc) AC_CONFIG_HEADER(config.h) @@ -45,17 +45,18 @@ exec_prefix='$(prefix)' bindir='$(exec_prefix)/bin' -datadir='$(prefix)/lib' +datadir='$(prefix)/share' libdir='$(exec_prefix)/lib' +libexecdir='$(exec_prefix)/libexec' includedir='$(prefix)/include/octave' mandir='$(prefix)/man/man1' infodir='$(prefix)/info' fcnfiledir='$(datadir)/octave/$(version)/m' localfcnfiledir='$(datadir)/octave/site/m' localfcnfilepath='$(localfcnfiledir)//' -archlibdir='$(libdir)/octave/$(version)/exec/$(target_host_type)' -octfiledir='$(libdir)/octave/$(version)/oct/$(target_host_type)' -localoctfiledir='$(libdir)/octave/site/oct/$(target_host_type)' +archlibdir='$(libexecdir)/octave/$(version)/exec/$(target_host_type)' +octfiledir='$(libexecdir)/octave/$(version)/oct/$(target_host_type)' +localoctfiledir='$(libexecdir)/octave/site/oct/$(target_host_type)' localoctfilepath='$(localoctfiledir)//' fcnfilepath='.:$(localoctfilepath):$(localfcnfilepath):$(octfiledir)//:$(fcnfiledir)//' imagedir='$(datadir)/octave/$(version)/imagelib' @@ -66,6 +67,7 @@ AC_MSG_RESULT([defining bindir to be $bindir]) AC_MSG_RESULT([defining datadir to be $datadir]) AC_MSG_RESULT([defining libdir to be $libdir]) +AC_MSG_RESULT([defining libexecdir to be $libexecdir]) AC_MSG_RESULT([defining includedir to be $includedir]) AC_MSG_RESULT([defining mandir to be $mandir]) AC_MSG_RESULT([defining infodir to be $infodir]) @@ -84,6 +86,7 @@ AC_SUBST(bindir) AC_SUBST(datadir) AC_SUBST(libdir) +AC_SUBST(libexecdir) AC_SUBST(includedir) AC_SUBST(mandir) AC_SUBST(infodir)