summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDavid M. Lee <dlee@respoke.io>2016-12-16 01:32:57 -0600
committerDavid M. Lee <dlee@respoke.io>2016-12-16 01:36:14 -0600
commit4fee903d931f635d101dabdeb7c8155785dfa8dd (patch)
treec26396156207473a1c4ecdad14aaee61516b4374 /configure
parent510acb2effeb14d62853c8a5ba239b563bce8efd (diff)
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 6149b0e5c..a87b8374a 100755
--- a/configure
+++ b/configure
@@ -9284,7 +9284,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