summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1996-08-08 18:54:36 +0000
committerThomas Bushnell <thomas@gnu.org>1996-08-08 18:54:36 +0000
commitbc4c0265d666854dce6049932993f0b6ed147924 (patch)
treeaaab7cb3cd9fc51ab6fb611aca665c469bcb0ca3
parentfd5a973890a84907571cbc25f6b2a5b342924570 (diff)
*** empty log message ***
-rw-r--r--ChangeLog7
-rw-r--r--Makeconf2
-rw-r--r--configure.in5
3 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index e4d8dfe4..279cd165 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Thu Aug 8 13:14:44 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
+
+ * configure.in: Add AC_SUBST for `install_prefix'.
+ * config.make.in (install_prefix, install_includedir): New
+ variables.
+ * Makeconf (vpath %.defs): Look for these in install_includedir.
+
Wed Aug 7 14:57:55 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* Makefile (prog-subdirs): Add `nfsd'.
diff --git a/Makeconf b/Makeconf
index 036de787..064fcc87 100644
--- a/Makeconf
+++ b/Makeconf
@@ -332,7 +332,7 @@ vpath libutil.% $(libdir)/
# Where to find .defs files.
-vpath %.defs $(top_srcdir)/hurd $(includedir)/mach $(includedir)/device
+vpath %.defs $(top_srcdir)/hurd $(install_includedir)/mach $(install_includedir)/device
FORCE:
diff --git a/configure.in b/configure.in
index 01c41005..1492baca 100644
--- a/configure.in
+++ b/configure.in
@@ -1,10 +1,13 @@
dnl Process this file with autoconf to produce a configure script.
-AC_REVISION([$Id: configure.in,v 1.5 1996/05/01 02:19:03 roland Exp $])
+AC_REVISION([$Id: configure.in,v 1.6 1996/08/08 18:54:32 thomas Exp $])
AC_PREREQ(2.4) dnl Minimum Autoconf version required.
AC_INIT(hurd/hurd_types.h) dnl A distinctive file to look for in srcdir.
AC_PREFIX_DEFAULT() dnl Default to empty prefix, not /usr/local.
+test "x$install_prefix" = xNONE && install_prefix='$prefix'
+AC_SUBST(install_prefix)
+
AC_CANONICAL_HOST
case "$host_os" in
gnu*) ;;