build: use backticks to avoid a warning during autoreconf

master
Benno Schulenberg 2017-05-09 20:23:04 +02:00
parent 7e09f2c64a
commit c620fc6aa9
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\" -DSYSCONFDIR=\"$(sysconfdir)\" \
CLEANFILES = revision.h
if BUILDING_FROM_GIT
SOMETHING = "REVISION \"$(shell git describe --tags 2>/dev/null)\""
SOMETHING = "REVISION \"`git describe --tags 2>/dev/null`\""
else
SOMETHING = "NOTHING \"from tarball\""
endif