aboutsummaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-06-15 10:37:27 -0700
committerBen Pfaff <blp@nicira.com>2010-06-17 10:25:16 -0700
commit50fa00401969b3ef19ecba84ef1bee380819f6c8 (patch)
tree83e8153e8104765bf59cfa4925ad96ad642b7a97 /build-aux
parent3c34dd48afdb134f74099c5b84fe5bdc33656023 (diff)
update-debian-changelog: Pass "-f" to "mv" to fix "make distcheck".
"make distcheck" unsets the "writable" bit of files as it installs them on "make dist", so to avoid an error (or a user query) updating debian/changelog in such a situation we must use the -f option.
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 dfb84fc4..9353e700 100755
--- a/build-aux/update-debian-changelog
+++ b/build-aux/update-debian-changelog
@@ -33,5 +33,5 @@ openvswitch ($VERSION) unstable; urgency=low
EOF
cat "$CHANGELOG"
} > "$CHANGELOG".new
- mv "$CHANGELOG".new "$CHANGELOG"
+ mv -f "$CHANGELOG".new "$CHANGELOG"
fi