diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-01-31 12:50:54 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-01-31 12:50:54 +0100 |
commit | 850206158f6e77a4798f79fe293a7d7b7a7687f0 (patch) | |
tree | b1bd7ec2f64f06028528343a83a972aad1c67441 | |
parent | 775e91c41924663bc397516565fed2fcdcb52fc8 (diff) | |
download | sciteco-850206158f6e77a4798f79fe293a7d7b7a7687f0.tar.gz |
fixed bootstrapping using sciteco-minimal and bootstrap autodetection
was broken due to untested changes
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 9d29eb1..b7fab50 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. diff --git a/src/Makefile.am b/src/Makefile.am index e714780..9f40524 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -14,7 +14,7 @@ EXTRA_DIST = gtk-info-popup.gob \ if BOOTSTRAP noinst_PROGRAMS = sciteco-minimal -symbols-scintilla.cpp symbols-scilexer.cpp : $(BOOTSTRAP_SCITECO) +symbols-scintilla.cpp symbols-scilexer.cpp : sciteco-minimal$(EXEEXT) endif sciteco_minimal_SOURCES = main.cpp sciteco.h \ cmdline.cpp cmdline.h \ |