aboutsummaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorJesse Gross <jesse@nicira.com>2010-05-27 16:35:45 -0700
committerJesse Gross <jesse@nicira.com>2010-05-27 16:42:28 -0700
commit8b75073b0c677f66a1621a67a0df9e6f55309ea9 (patch)
tree6a830aaf40e9ff5c3583cf19e76c499c7da2fa62 /build-aux
parent4eb26d3cd41b6bcbd3e12e85bc9e4f36f47eb430 (diff)
debian: Fix version number check for changelog.
The test to see if the current version is present in the Debian changelog wasn't properly quoted so we would add a new entry every time configure was run.
Diffstat (limited to 'build-aux')
-rwxr-xr-xbuild-aux/update-debian-changelog2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/update-debian-changelog b/build-aux/update-debian-changelog
index 2007d4ff..dfb84fc4 100755
--- a/build-aux/update-debian-changelog
+++ b/build-aux/update-debian-changelog
@@ -18,7 +18,7 @@ if test ! -e "$CHANGELOG"; then
exit 1
fi
-if grep '($(VERSION))' debian/changelog >/dev/null 2>&1; then
+if grep '('$VERSION')' debian/changelog >/dev/null 2>&1; then
:
else
echo "Adding change log record for $VERSION to $CHANGELOG"