diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-08-29 09:30:47 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-08-29 09:30:47 -0700 |
commit | 57b99d9da3dc5db0ff740de0c17e42529faa66a0 (patch) | |
tree | 211297016bc4441b7911e4f069dd40323bb62f4c | |
parent | 4fb4946cc302c2d78f47c4f78afa093df6ce7017 (diff) | |
download | txr-57b99d9da3dc5db0ff740de0c17e42529faa66a0.tar.gz txr-57b99d9da3dc5db0ff740de0c17e42529faa66a0.tar.bz2 txr-57b99d9da3dc5db0ff740de0c17e42529faa66a0.zip |
Makefile: whitespace fix.
* Makefile (SRCS): Fix mixture of tabs and spaces, and bad
alignment, reported by Paul A. Patience.
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -76,10 +76,10 @@ STDLIB_LATE_TLOS := $(filter-out $(STDLIB_EARLY_TLOS),$(STDLIB_TLOS)) ifneq ($(have_git),) SRCS := $(addprefix $(top_srcdir),\ $(filter-out lex.yy.c y.tab.c y.tab.h,\ - $(shell git $(if $(top_srcdir), \ - --work-tree=$(top_srcdir)) \ + $(shell git $(if $(top_srcdir),\ + --work-tree=$(top_srcdir)) \ --git-dir=$(top_srcdir).git \ - ls-files "*.c" "*.h" "*.l" "*.y"))) + ls-files "*.c" "*.h" "*.l" "*.y"))) endif SHIPPED := lex.yy.c y.tab.c y.tab.h |