[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated
From: |
David Levine |
Subject: |
[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. e8ab951121e1e3805b4e4e914ad119d96b14cb06 |
Date: |
Tue, 13 Dec 2011 04:51:54 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The nmh Mail Handling System".
The branch, master has been updated
via e8ab951121e1e3805b4e4e914ad119d96b14cb06 (commit)
from 83830a24b2d6d071acd117873cbe7d247ecc36a2 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/nmh.git/commit/?id=e8ab951121e1e3805b4e4e914ad119d96b14cb06
commit e8ab951121e1e3805b4e4e914ad119d96b14cb06
Author: David Levine <address@hidden>
Date: Mon Dec 12 22:50:06 2011 -0600
Replaced use of GNU make shell function with backticks. These were
for the rpm target, which would most likely only be build on Linux.
So they probably would have been OK, but just in case.
diff --git a/Makefile.in b/Makefile.in
index c1060ea..38a9c1d 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -204,10 +204,10 @@ nmhrelease:
# tarfile and version are as specified in this file. rpmbuild does
# not allow Version to contain any dashes.
rpm: all nmhdist
- @rpmbuild --define '_topdir $(shell pwd)/RPM' \
+ @rpmbuild --define '_topdir '`pwd`'/RPM' \
--define '_tmppath %{_topdir}/TMP' \
- --define 'srcdir $(shell pwd)' \
+ --define 'srcdir '`pwd` \
--define 'tarfile $(tarfile)' \
- --define 'version $(shell echo $(VERSION) | sed "s/-/_/g")' \
+ --define 'version '`echo $(VERSION) | sed "s/-/_/g"` \
-ba nmh.spec
@$(RM) $(tarfile)
-----------------------------------------------------------------------
Summary of changes:
Makefile.in | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
The nmh Mail Handling System
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. e8ab951121e1e3805b4e4e914ad119d96b14cb06,
David Levine <=