Fix bash env var conditionals in merge.py call to be consistent
authorJonathan Brownell <brownell@hp.com>
Fri, 25 Jul 2014 21:07:52 +0000 (14:07 -0700)
committerJonathan Brownell <brownell@hp.com>
Mon, 4 Aug 2014 20:56:01 +0000 (13:56 -0700)
commit3e30e6ab8ae59ad7145b1ff429b89d46a09430b2
tree4ed208ae483b9255fd9323467fa4a830aa6d4cb6
parentbeca15dec5265783047d5df210b270ed3d77dd4b
Fix bash env var conditionals in merge.py call to be consistent

Bash syntax ${ENV:-'0'} and ${ENV='0'} vary only in their behavior
when $ENV is set to an empty string (in which case the former
expression results in '0' while the latter results in ''.)

There is no reason the Makefile should be using the latter
expression, and rather confusing when the two different forms
are used side-by-side on the same line.

Change-Id: I66bb5ea7437c3f2aa9bc4e1afc9b522c450ff976
Makefile