configure --sysconfdir=/.. broken
Andreas Jaeger
aj@suse.de
Wed Jun 7 07:39:00 GMT 2000
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
More information about the Libc-hacker
mailing list