diff options
-rw-r--r-- | configure.ac | 4 | ||||
-rwxr-xr-x | debian/rules | 1 | ||||
-rwxr-xr-x | distribute | 5 |
3 files changed, 5 insertions, 5 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` diff --git a/debian/rules b/debian/rules index 7b7396b..6c6a679 100755 --- a/debian/rules +++ b/debian/rules @@ -11,7 +11,6 @@ build: dh_auto_build -Dscintilla/scinterm dh_auto_configure -Dsciteco -- \ --enable-bootstrap \ - --with-scintilla=../scintilla \ --with-interface=ncurses dh_auto_build -Dsciteco touch $@ @@ -70,8 +70,9 @@ sciteco-$(SCITECO_VERSION)-win32.zip : bundle CXX=i686-w64-mingw32-g++ AR=i686-w64-mingw32-ar (cd sciteco-$(SCITECO_VERSION)/sciteco; \ ./configure --host=i686-w64-mingw32 --prefix=/ \ - --with-scintilla=../scintilla --with-interface=pdcurses \ - --with-default-scitecopath=lib --disable-bootstrap \ + --with-interface=pdcurses \ + --with-default-scitecopath=lib \ + --disable-bootstrap \ --enable-html-manual \ CFLAGS="-g -O3" CXXFLAGS="-g -O3"; \ ) |