blob: c6da3b7059a0bfb4b9ed21354cdc171c61d3b1c9 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001From 9a950b14b9f7767d83e5faac2e1e8203c500e2c2 Mon Sep 17 00:00:00 2001
2From: Rod Whitby <rod@whitby.id.au>
3Date: Tue, 25 Oct 2011 18:43:50 -0500
4Subject: [PATCH] memtester: Added patch to Makefile to change no-longer-supported 'head -1' syntax to 'head -n 1'.
5
6Signed-off-by: Joel A Fernandes <joelagnel@ti.com>
7---
Patrick Williams520786c2023-06-25 16:20:36 -05008Upstream-Status: Pending
9
Patrick Williamsb48b7b42016-08-17 15:04:38 -050010 Makefile | 4 ++--
11 1 files changed, 2 insertions(+), 2 deletions(-)
12
13diff --git a/Makefile b/Makefile
14index a271bf5..6bccff3 100644
15--- a/Makefile
16+++ b/Makefile
17@@ -32,8 +32,8 @@ install: all
18 auto-ccld.sh: \
19 conf-cc conf-ld warn-auto.sh
20 ( cat warn-auto.sh; \
21- echo CC=\'`head -1 conf-cc`\'; \
22- echo LD=\'`head -1 conf-ld`\' \
23+ echo CC=\'`head -n 1 conf-cc`\'; \
24+ echo LD=\'`head -n 1 conf-ld`\' \
25 ) > auto-ccld.sh
26
27 compile: \
28--
291.7.0.4
30