only run svn info if .svn exists

SVN-Revision: 9213
owl
Felix Fietkau 2007-10-09 03:37:31 +00:00
parent 8c97372e0d
commit c3a2acf7db
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ include $(TOPDIR)/include/verbose.mk
ifneq ($(VERSION),)
OPENWRTVERSION:=$(VERSION) ($(OPENWRTVERSION))
else
REV:=$(shell LANG=C svn info | awk '/^Revision:/ { print$$2 }' )
REV:=$(if $(wildcard .svn/entries),$(shell LANG=C svn info | awk '/^Revision:/ { print$$2 }' ))
ifneq ($(REV),)
OPENWRTVERSION:=$(OPENWRTVERSION)/r$(REV)
endif