mirror of
https://git.yoctoproject.org/poky
synced 2026-03-01 21:09:39 +01:00
Refresh patches using devtool. Update license since the main code is now covered by LGPL-2.1+ and the tests under GPL-2. Fix a MIPS build error with an upstream patch. (From OE-Core rev: 874c5d4cd4902545b0fb924d0313488521fb91e2) Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From ed30a4fc4dc264ce5f5881462e03ae13c921bfed Mon Sep 17 00:00:00 2001
|
|
From: Andre McCurdy <armccurdy@gmail.com>
|
|
Date: Mon, 18 Jan 2016 13:33:50 -0800
|
|
Subject: [PATCH] strace: remove need for scripts
|
|
|
|
git-version-gen copyright-year-gen file-date-gen are not included in
|
|
tarball releases, so we need to avoid attempts to call them.
|
|
|
|
Upstream-Status: Inappropriate [configuration]
|
|
|
|
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
|
|
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
|
|
|
|
---
|
|
configure.ac | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 8045ebd..4319709 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -12,12 +12,12 @@
|
|
|
|
AC_PREREQ(2.57)
|
|
AC_INIT([strace],
|
|
- m4_esyscmd([./git-version-gen .tarball-version]),
|
|
+ m4_esyscmd_s([cat .tarball-version]),
|
|
[strace-devel@lists.strace.io],
|
|
[strace],
|
|
[https://strace.io])
|
|
-m4_define([copyright_year], m4_esyscmd([./copyright-year-gen .year]))
|
|
-m4_define([manpage_date], m4_esyscmd([./file-date-gen strace.1.in]))
|
|
+m4_define([copyright_year], m4_esyscmd_s([cat .year]))
|
|
+m4_define([manpage_date], m4_esyscmd_s([cat .strace.1.in.date]))
|
|
AC_COPYRIGHT([Copyright (c) 1999-]copyright_year[ The strace developers.])
|
|
AC_CONFIG_SRCDIR([strace.c])
|
|
AC_CONFIG_AUX_DIR([.])
|