Get the ldconfig check to work for bash shells.
This commit is contained in:
parent
ed8fbe3e95
commit
91372b39d6
|
@ -4130,7 +4130,7 @@ else
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||||
for as_dir in /sbin:/usr/sbin:$PATH
|
for as_dir in /sbin /usr/sbin $PATH
|
||||||
do
|
do
|
||||||
IFS=$as_save_IFS
|
IFS=$as_save_IFS
|
||||||
test -z "$as_dir" && as_dir=.
|
test -z "$as_dir" && as_dir=.
|
||||||
|
|
|
@ -57,7 +57,7 @@ AC_PROG_RANLIB
|
||||||
AC_PROG_INSTALL
|
AC_PROG_INSTALL
|
||||||
AC_PROG_LN_S
|
AC_PROG_LN_S
|
||||||
AC_CHECK_PROG(C2MAN,c2man,c2man,\$(TOPSRCDIR)/tools/c2man.pl)
|
AC_CHECK_PROG(C2MAN,c2man,c2man,\$(TOPSRCDIR)/tools/c2man.pl)
|
||||||
AC_PATH_PROG(LDCONFIG, ldconfig, true, /sbin:/usr/sbin:$PATH)
|
AC_PATH_PROG(LDCONFIG, ldconfig, true, [/sbin /usr/sbin $PATH])
|
||||||
|
|
||||||
dnl Check for lint
|
dnl Check for lint
|
||||||
AC_CHECK_PROGS(LINT, lclint lint)
|
AC_CHECK_PROGS(LINT, lclint lint)
|
||||||
|
|
Loading…
Reference in New Issue