Commit a33a4f00 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

build: don't use a dummy dependency, as it breaks non-GNU makes

This fixes https://savannah.gnu.org/bugs/?50956

.
Reported-by: default avatarJohn Wiersba <jrw32982@yahoo.com>
parent 509b091c
Showing with 1 addition and 3 deletions
+1 -3
...@@ -12,13 +12,11 @@ endif ...@@ -12,13 +12,11 @@ endif
nano.o: revision.h nano.o: revision.h
winio.o: revision.h winio.o: revision.h
revision.h: update_revision revision.h:
@[ -f $@ ] || touch $@ @[ -f $@ ] || touch $@
@echo "#define $(SOMETHING)" | cmp -s $@ - || \ @echo "#define $(SOMETHING)" | cmp -s $@ - || \
echo "#define $(SOMETHING)" > $@ echo "#define $(SOMETHING)" > $@
.PHONY: update_revision
bin_PROGRAMS = nano bin_PROGRAMS = nano
nano_SOURCES = browser.c \ nano_SOURCES = browser.c \
chars.c \ chars.c \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment