mirror of git://sourceware.org/git/glibc.git
Update.
* sysdeps/unix/sysv/linux/configure.in: Set libc_cv_sysconfdir
depending on the configure option --sysconfdir.
Closes PR libc/1762.
Patch by Andreas Schwab <schwab@suse.de>.
This commit is contained in:
parent
e85db9de59
commit
cee49e0c4c
|
|
@ -1,5 +1,10 @@
|
||||||
2000-06-14 Andreas Jaeger <aj@suse.de>
|
2000-06-14 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/configure.in: Set libc_cv_sysconfdir
|
||||||
|
depending on the configure option --sysconfdir.
|
||||||
|
Closes PR libc/1762.
|
||||||
|
Patch by Andreas Schwab <schwab@suse.de>.
|
||||||
|
|
||||||
* sysdeps/mips/dl-machine.h: Pass finalizer correctly to user
|
* sysdeps/mips/dl-machine.h: Pass finalizer correctly to user
|
||||||
entry point.
|
entry point.
|
||||||
Reported by Jim Pick <jim@jimpick.com>.
|
Reported by Jim Pick <jim@jimpick.com>.
|
||||||
|
|
|
||||||
|
|
@ -130,7 +130,12 @@ if test "$prefix" = "/usr" -o "$prefix" = "/usr/"; then
|
||||||
else
|
else
|
||||||
libc_cv_slibdir="/lib"
|
libc_cv_slibdir="/lib"
|
||||||
fi
|
fi
|
||||||
libc_cv_sysconfdir="/etc"
|
# Allow the user to override the path with --sysconfdir
|
||||||
|
if test $sysconfdir = '${prefix}/etc'; then
|
||||||
|
libc_cv_sysconfdir=/etc
|
||||||
|
else
|
||||||
|
libc_cv_sysconfdir=$sysconfdir
|
||||||
|
fi
|
||||||
libc_cv_rootsbindir="/sbin"
|
libc_cv_rootsbindir="/sbin"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
@ -189,7 +194,7 @@ if test $host = $build; then
|
||||||
ac_prefix=$ac_default_prefix
|
ac_prefix=$ac_default_prefix
|
||||||
fi
|
fi
|
||||||
echo $ac_n "checking for symlinks in ${ac_prefix}/include""... $ac_c" 1>&6
|
echo $ac_n "checking for symlinks in ${ac_prefix}/include""... $ac_c" 1>&6
|
||||||
echo "configure:193: checking for symlinks in ${ac_prefix}/include" >&5
|
echo "configure:198: checking for symlinks in ${ac_prefix}/include" >&5
|
||||||
ac_message=
|
ac_message=
|
||||||
if test -L ${ac_prefix}/include/net; then
|
if test -L ${ac_prefix}/include/net; then
|
||||||
ac_message="$ac_message
|
ac_message="$ac_message
|
||||||
|
|
|
||||||
|
|
@ -101,7 +101,12 @@ if test "$prefix" = "/usr" -o "$prefix" = "/usr/"; then
|
||||||
else
|
else
|
||||||
libc_cv_slibdir="/lib"
|
libc_cv_slibdir="/lib"
|
||||||
fi
|
fi
|
||||||
libc_cv_sysconfdir="/etc"
|
# Allow the user to override the path with --sysconfdir
|
||||||
|
if test $sysconfdir = '${prefix}/etc'; then
|
||||||
|
libc_cv_sysconfdir=/etc
|
||||||
|
else
|
||||||
|
libc_cv_sysconfdir=$sysconfdir
|
||||||
|
fi
|
||||||
libc_cv_rootsbindir="/sbin"
|
libc_cv_rootsbindir="/sbin"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue