Replaced use of GNU make shell function with backticks. These were
authorDavid Levine <levinedl@acm.org>
Tue, 13 Dec 2011 04:50:06 +0000 (22:50 -0600)
committerDavid Levine <levinedl@acm.org>
Tue, 13 Dec 2011 04:50:06 +0000 (22:50 -0600)
for the rpm target, which would most likely only be build on Linux.
So they probably would have been OK, but just in case.

Makefile.in

index c1060ea..38a9c1d 100644 (file)
@@ -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)