This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

configure --sysconfdir=/.. broken



We've got a bug report that --sysconfdir=/some-dir isn't honoured at
all.  Looking at the configure files, I noticed:

AC_SUBST(libc_cv_slibdir)
AC_SUBST(libc_cv_localedir)
AC_SUBST(libc_cv_sysconfdir)
AC_SUBST(libc_cv_rootsbindir)

But these are never set.  I'm appending a patch to fix this for
sysconfdir.  May I commit this?

What shall we do about the other variables?  You can set them with
configparms and therefore I would leave them alone.

Andreas

2000-06-07  Andreas Jaeger  <aj@suse.de>

	* configure.in: Remove substituion of libc_cv_sysconfdir.

	* config.make.in (sysconfdir): Use @sysconfdir@.
============================================================
Index: config.make.in
--- config.make.in	2000/05/23 19:22:55	1.68
+++ config.make.in	2000/06/07 14:33:43
@@ -13,7 +13,7 @@
 libdir = @libdir@
 slibdir = @libc_cv_slibdir@
 localedir = @libc_cv_localedir@
-sysconfdir = @libc_cv_sysconfdir@
+sysconfdir = @sysconfdir@
 libexecdir = @libexecdir@
 rootsbindir = @libc_cv_rootsbindir@
 infodir = @infodir@
============================================================
Index: configure.in
--- configure.in	2000/05/23 19:21:52	1.277
+++ configure.in	2000/06/07 14:33:45
@@ -1314,7 +1314,6 @@
 
 AC_SUBST(libc_cv_slibdir)
 AC_SUBST(libc_cv_localedir)
-AC_SUBST(libc_cv_sysconfdir)
 AC_SUBST(libc_cv_rootsbindir)
 
 AC_SUBST(use_ldconfig)

-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.inka.de

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]