mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 11:58:52 +00:00
configure: fix with-pjproject-bundled
The AC_ARG_WITH macro's shell variable is withval; not enableval. Purely coincidentally, the option would work when --enable-dev-mode is given. Also fixed a portability problem with bootstrap.sh, since -printf is not a portable option for find. Change-Id: I0f0e5b1a934b5af5737713834361e9c95b96b376
This commit is contained in:
committed by
George Joseph
parent
91485734a4
commit
ab447f8a6a
2
configure
vendored
2
configure
vendored
@@ -9209,7 +9209,7 @@ PJPROJECT_BUNDLED=no
|
||||
|
||||
# Check whether --with-pjproject-bundled was given.
|
||||
if test "${with_pjproject_bundled+set}" = set; then :
|
||||
withval=$with_pjproject_bundled; case "${enableval}" in
|
||||
withval=$with_pjproject_bundled; case "${withval}" in
|
||||
n|no) PJPROJECT_BUNDLED=no ;;
|
||||
*) PJPROJECT_BUNDLED=yes ;;
|
||||
esac
|
||||
|
Reference in New Issue
Block a user