aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure.ac
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2013-03-20 15:00:22 +0100
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2013-03-20 15:00:22 +0100
commit086e9ed2daaca207f4dc21a457c5e77c02c8a093 (patch)
tree0345a4123e40317a4b91b6502fe39663c2880985 /configure.ac
parent770e5fc1d6ac89231c50bb10d96225636bab3fb5 (diff)
downloadsciteco-086e9ed2daaca207f4dc21a457c5e77c02c8a093.tar.gz
default Scintilla-path is ../scintilla
so no additional --with-scintilla is necessary when building from a source bundle
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 2e56b74..90dde43 100644
--- a/configure.ac
+++ b/configure.ac
@@ -95,8 +95,8 @@ esac
#
AC_ARG_WITH(scintilla,
AS_HELP_STRING([--with-scintilla=PATH],
- [Specify Scintilla's path [default=..]]),
- [SCINTILLA_PATH=$withval], [SCINTILLA_PATH=..])
+ [Specify Scintilla's path [default=../scintilla]]),
+ [SCINTILLA_PATH=$withval], [SCINTILLA_PATH=../scintilla])
# eval necessary to perform necessary expansions that may not
# have been done by the calling shell
SCINTILLA_PATH=`eval $READLINK -e $SCINTILLA_PATH`