diff options
| author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-02-03 18:44:27 +0100 |
|---|---|---|
| committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-02-03 18:44:27 +0100 |
| commit | 1d768b53295d71705fd1618f936240ed5428cb87 (patch) | |
| tree | 8efe9126d62db1eea01379a4a4b1fffc2abf6585 /configure.ac | |
| parent | 4f069e1977c9567b8aca7b0306ac5f100ef11282 (diff) | |
| parent | b66d269b94016d43b3d256ab01c123ba2937c917 (diff) | |
Merge branch 'master' of github.com:rhaberkorn/sciteco
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 9d29eb1..4a9d500 100644 --- a/configure.ac +++ b/configure.ac @@ -35,7 +35,7 @@ fi # For bootstrapping via installed sciteco AC_CHECK_PROG(SCITECO, sciteco, sciteco) if [[ x$SCITECO = x ]]; then - bootstrap = yes + bootstrap=yes fi # Checks for libraries. @@ -80,7 +80,9 @@ AC_ARG_WITH(scintilla, AS_HELP_STRING([--with-scintilla=PATH], [Specify Scintilla's path [default=..]]), [SCINTILLA_PATH=$withval], [SCINTILLA_PATH=..]) -SCINTILLA_PATH=`$READLINK -e $SCINTILLA_PATH` +# eval necessary to perform necessary expansions that may not +# have been done by the calling shell +SCINTILLA_PATH=`eval $READLINK -e $SCINTILLA_PATH` AC_SUBST(SCINTILLA_PATH) CPPFLAGS="$CPPFLAGS -I$SCINTILLA_PATH/include -DSCI_LEXER" |
