1
0
mirror of synced 2026-04-16 07:56:15 +00:00

Make VCS detection line more readable by splitting it up over several lines

This commit is contained in:
Axel Beckert
2010-05-15 00:20:43 +02:00
parent 27956bef61
commit 12997b3416

View File

@@ -17,7 +17,9 @@ DIST_PREFIX = ${TMP}
VERSION = 4.2rc1
DEBVERSION = $(shell echo $(VERSION)|sed 's/\(rc\|pre\|beta\|alpha\)/~\1/')
BASE = xen-tools
VCS = $(shell if git st > /dev/null; then echo git; elif hg st > /dev/null; then echo hg; else echo cannot-determine-used-vcs; fi)
VCS = $(shell if git st > /dev/null; then echo git;
elif hg st > /dev/null; then echo hg;
else echo cannot-determine-used-vcs; fi)
#
# Installation prefix, useful for the Debian package.