summaryrefslogtreecommitdiff
path: root/top
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-07-30 11:30:53 +0200
committerJim Meyering <meyering@redhat.com>2012-07-30 11:30:53 +0200
commit6ae8e2b4f83d6fc9e047673ef62b144b511bcbc8 (patch)
treeaa140537d7c617b264e221a1ad6e5cdc3b7b4881 /top
parented4e07a077c43052ebb60ea813698f289ba2f367 (diff)
downloadgnulib-6ae8e2b4f83d6fc9e047673ef62b144b511bcbc8.tar.gz
maint.mk: avoid a sub-shell
* top/maint.mk (release-prep): Remove unneeded sub-shell.
Diffstat (limited to 'top')
-rw-r--r--top/maint.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/top/maint.mk b/top/maint.mk
index fa0280e3a4..6336e3a94a 100644
--- a/top/maint.mk
+++ b/top/maint.mk
@@ -1388,7 +1388,7 @@ release-prep:
$(MAKE) update-NEWS-hash
perl -pi -e '$$. == 3 and print "$(gl_noteworthy_news_)\n\n\n"' $(srcdir)/NEWS
msg=$$($(emit-commit-log)) || exit 1; \
- (cd $(srcdir) && $(VC) commit -m "$$msg" -a)
+ cd $(srcdir) && $(VC) commit -m "$$msg" -a
# Override this with e.g., -s $(srcdir)/some_other_name.texi
# if the default $(PACKAGE)-derived name doesn't apply.