We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d04b66 commit 8bbb4faCopy full SHA for 8bbb4fa
Makefile.am
@@ -31,7 +31,9 @@ EXTRA_DIST = gitrev.h dump.hh expr.hh grammar.hh log.hh prod.hh \
31
dut.hh postgres.hh monetdb.hh log-v1.0-to-v1.2.sql
32
33
gitrev.h: $(HEADERS) $(SOURCES)
34
- echo "#define GITREV \"$$(git describe --dirty --tags --always)\"" > $@
+ -if git describe --dirty --tags --always > /dev/null ; then \
35
+ echo "#define GITREV \"$$(git describe --dirty --tags --always)\"" > $@ ;\
36
+ fi
37
38
filterdump:
39
psql -c 'copy (select error from known) to stdout' smith|sort -u > known.txt
0 commit comments