diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile | 3 |
2 files changed, 8 insertions, 1 deletions
@@ -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. @@ -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 |