diff Makeconf.in @ 2439:dc870b8b229f

[project @ 1996-10-30 07:57:31 by jwe]
author jwe
date Wed, 30 Oct 1996 07:58:24 +0000
parents 4fc9fd1424a9
children d4eb39779b88
line wrap: on
line diff
--- a/Makeconf.in	Wed Oct 30 02:47:52 1996 +0000
+++ b/Makeconf.in	Wed Oct 30 07:58:24 1996 +0000
@@ -206,6 +206,10 @@
 # for multiple versions of Octave may be installed at once.
 archlibdir = @archlibdir@
 
+# Where to put executables to be run by Octave rather than by the
+# user that are specific to this site.
+localarchlibdir = @localarchlibdir@
+
 # Where to put object files that will by dynamically loaded.
 # This path usually includes the Octave version and configuration
 # name, so that multiple configurations for multiple versions of
@@ -300,7 +304,7 @@
 
 define do-subst-config-vals
 echo "making $@ from $<"
-sed < $< > $@.tmp \
+sed < $< \
   -e "s;%VERSION%;\"${version}\";" \
   -e "s;%config_opts%;\"${config_opts}\";" \
   -e "s;%TARGET_HOST_TYPE%;\"${target_host_type}\";" \
@@ -332,8 +336,8 @@
   -e "s;%LIBS%;\"${LIBS}\";" \
   -e "s;%LEXLIB%;\"${LEXLIB}\";" \
   -e "s;%LIBPLPLOT%;\"${LIBPLPLOT}\";" \
-  -e "s;%LIBDLFCN%;\"${LIBDLFCN}\";" \
-  -e "s;%DEFS%;\"${UGLY_DEFS}\";"
+  -e "s;%LIBDLFCN%;\"${LIBDLFCN}\";" | sed \
+  -e "s;%DEFS%;\"${UGLY_DEFS}\";" > $@.tmp
 $(top_srcdir)/move-if-change $@.tmp $@
 endef
 
@@ -351,6 +355,7 @@
   -e "s;%OCTAVE_LOCALFCNFILEDIR%;\"${localfcnfiledir}\";" \
   -e "s;%OCTAVE_LOCALFCNFILEPATH%;\"${localfcnfilepath}\";" \
   -e "s;%OCTAVE_ARCHLIBDIR%;\"${archlibdir}\";" \
+  -e "s;%OCTAVE_LOCALARCHLIBDIR%;\"${localarchlibdir}\";" \
   -e "s;%OCTAVE_OCTFILEDIR%;\"${octfiledir}\";" \
   -e "s;%OCTAVE_LOCALOCTFILEPATH%;\"${localoctfilepath}\";" \
   -e "s;%OCTAVE_FCNFILEPATH%;\"${fcnfilepath}\";" \