Makefile: pipe git describe errors to /dev/null
authorHarald Hoyer <harald@redhat.com>
Thu, 13 Jun 2013 09:58:00 +0000 (11:58 +0200)
committerHarald Hoyer <harald@redhat.com>
Thu, 13 Jun 2013 10:55:26 +0000 (12:55 +0200)
Makefile

index 9e3ebc7..846c5db 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 RELEASEDVERSION = -- will be replaced by "make dist" --
-VERSION = $(shell [ -d .git ] && git describe --abbrev=0 --tags || echo $(RELEASEDVERSION))
-GITVERSION = $(shell [ -d .git ] && { v=$$(git describe --tags); echo -$${v\#*-}; } )
+VERSION = $(shell [ -d .git ] && git describe --abbrev=0 --tags 2>/dev/null || echo $(RELEASEDVERSION))
+GITVERSION = $(shell [ -d .git ] && { v=$$(git describe --tags 2>/dev/null); echo -$${v\#*-}; } )
 
 -include Makefile.inc