Blame SOURCES/0011-build-use-portable-Makefile-variables.patch

b6cf65
From 243928da395080d7895111d5e5c0f1ff5f9e95fb Mon Sep 17 00:00:00 2001
b6cf65
From: "A. Gordon" <assafgordon@gmail.com>
b6cf65
Date: Mon, 15 Sep 2014 15:51:50 -0400
b6cf65
Subject: [PATCH 11/16] build: use portable Makefile variables
b6cf65
b6cf65
* Makefile.am: use '$?' instead of '$<'
b6cf65
  $< in a non-inference rule is a GNU-make extension, which fails with
b6cf65
  BSD make.
b6cf65
---
b6cf65
 Makefile.am | 4 ++--
b6cf65
 1 file changed, 2 insertions(+), 2 deletions(-)
b6cf65
b6cf65
diff --git a/Makefile.am b/Makefile.am
b6cf65
index 24d1730..1c14948 100644
b6cf65
--- a/Makefile.am
b6cf65
+++ b/Makefile.am
b6cf65
@@ -32,9 +32,9 @@ man_MANS = virt-what.1
b6cf65
 
b6cf65
 virt-what.1: virt-what.pod
b6cf65
 	pod2man -c "Virtualization Support" --release "$(PACKAGE)-$(VERSION)" \
b6cf65
-	  $< > $@
b6cf65
+	  $? > $@
b6cf65
 virt-what.txt: virt-what.pod
b6cf65
-	pod2text $< > $@
b6cf65
+	pod2text $? > $@
b6cf65
 
b6cf65
 endif
b6cf65
 
b6cf65
-- 
b6cf65
2.3.1
b6cf65