summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--Makefile3
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c3c7cba4..5e20e156 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2015-08-07 Kaz Kylheku <kaz@kylheku.com>
+ * Makefile (SRCS): When top_srcdir is blank, elide the entire
+ --work-tree argument to git. On Cygwin, git throws a strange error
+ message when --work-tree is given a blank argument.
+
+2015-08-07 Kaz Kylheku <kaz@kylheku.com>
+
* stream.c: Include <wctype.h> header for iswprint.
Needed on Cygwin.
diff --git a/Makefile b/Makefile
index 80c22556..b6e98487 100644
--- a/Makefile
+++ b/Makefile
@@ -57,7 +57,8 @@ EXTRA_OBJS-$(add_win_res) += win/txr.res
ifneq ($(have_git),)
SRCS := $(addprefix $(top_srcdir),\
$(filter-out lex.yy.c y.tab.c y.tab.h,\
- $(shell git --work-tree=$(top_srcdir) \
+ $(shell git $(if $(top_srcdir), \
+ --work-tree=$(top_srcdir)) \
--git-dir=$(top_srcdir).git \
ls-files "*.c" "*.h" "*.l" "*.y")))
endif