Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 1 | From 9a950b14b9f7767d83e5faac2e1e8203c500e2c2 Mon Sep 17 00:00:00 2001 |
| 2 | From: Rod Whitby <rod@whitby.id.au> |
| 3 | Date: Tue, 25 Oct 2011 18:43:50 -0500 |
| 4 | Subject: [PATCH] memtester: Added patch to Makefile to change no-longer-supported 'head -1' syntax to 'head -n 1'. |
| 5 | |
| 6 | Signed-off-by: Joel A Fernandes <joelagnel@ti.com> |
| 7 | --- |
Patrick Williams | 520786c | 2023-06-25 16:20:36 -0500 | [diff] [blame] | 8 | Upstream-Status: Pending |
| 9 | |
Patrick Williams | b48b7b4 | 2016-08-17 15:04:38 -0500 | [diff] [blame] | 10 | Makefile | 4 ++-- |
| 11 | 1 files changed, 2 insertions(+), 2 deletions(-) |
| 12 | |
| 13 | diff --git a/Makefile b/Makefile |
| 14 | index 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 | -- |
| 29 | 1.7.0.4 |
| 30 | |