<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>d118b08f - tools lib api: Add io_dir an allocation free readdir alternative</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#d118b08f</link>
        <description>tools lib api: Add io_dir an allocation free readdir alternativeglibc&apos;s opendir allocates a minimum of 32kb, when called recursivelyfor a directory tree the memory consumption can add up - nearly 300kbduring perf start-up when processing modules. Add a stack allocatedvariant of readdir sized a little more than 1kb.As getdents64 may be missing from libc, add support using syscall. Asthe system call number maybe missing, add #defines for those.Note, an earlier version of this patch had a feature test forgetdents64 but there were problems on certains distros wheregetdents64 would be #define renamed to getdents breaking the code. Thesyscall use was made uncondtional to work around this. There iscontext in:https://lore.kernel.org/lkml/20231207050433.1426834-1-irogers@google.com/Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Link: https://lore.kernel.org/r/20250222061015.303622-2-irogers@google.comSigned-off-by: Namhyung Kim &lt;namhyung@kernel.org&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Sat, 22 Feb 2025 06:10:06 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>eb9b9a6f - tools: Drop nonsensical -O6</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#eb9b9a6f</link>
        <description>tools: Drop nonsensical -O6-O6 is very much not-a-thing. Really, this should&apos;ve been droppedentirely in 49b3cd306e60b9d8 (&quot;tools: Set the maximum optimization levelaccording to the compiler being used&quot;) instead of just passing it fornot-Clang.Just collapse it down to -O3, instead of &quot;-O6 unless Clang, in which case-O3&quot;.GCC interprets &gt; -O3 as -O3. It doesn&apos;t even interpret &gt; -O3 as -Ofast,which is a good thing, given -Ofast has specific (non-)requirements forcode built using it. So, this does nothing except look a bit daft.Remove the silliness and also save a few lines in the Makefiles accordingly.Reviewed-by: Ian Rogers &lt;irogers@google.com&gt;Reviewed-by: Jesper Juhl &lt;jesperjuhl76@gmail.com&gt;Signed-off-by: Sam James &lt;sam@gentoo.org&gt;Acked-by: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Bill Wendling &lt;morbo@google.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Justin Stitt &lt;justinstitt@google.com&gt;Cc: Kan Liang &lt;kan.liang@linux.intel.com&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Nathan Chancellor &lt;nathan@kernel.org&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: llvm@lists.linux.devLink: https://lore.kernel.org/r/4f01524fa4ea91c7146a41e26ceaf9dae4c127e4.1725821201.git.sam@gentoo.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Sun, 08 Sep 2024 18:46:41 +0000</pubDate>
        <dc:creator>Sam James &lt;sam@gentoo.org&gt;</dc:creator>
    </item>
<item>
        <title>1849f9f0 - tools lib api: Add dependency test to install_headers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#1849f9f0</link>
        <description>tools lib api: Add dependency test to install_headersCompute the headers to be installed from their source headers and makeeach have its own build target to install it. Using dependenciesavoids headers being reinstalled and getting a new timestamp whichthen causes files that depend on the header to be rebuilt.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Josh Poimboeuf &lt;jpoimboe@kernel.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Nathan Chancellor &lt;nathan@kernel.org&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Nicolas Schier &lt;nicolas@fjasle.eu&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Cc: Tom Rix &lt;trix@redhat.com&gt;Cc: bpf@vger.kernel.orgCc: llvm@lists.linux.devLink: https://lore.kernel.org/r/20221202045743.2639466-2-irogers@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Fri, 02 Dec 2022 04:57:39 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>586cb1d6 - tools lib api: Clean up install_headers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#586cb1d6</link>
        <description>tools lib api: Clean up install_headersAdd missing backslash that caused an install command to always appearin build output. Make the install headers more specific.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Alexei Starovoitov &lt;ast@kernel.org&gt;Cc: Andrii Nakryiko &lt;andrii@kernel.org&gt;Cc: Daniel Borkmann &lt;daniel@iogearbox.net&gt;Cc: Hao Luo &lt;haoluo@google.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: John Fastabend &lt;john.fastabend@gmail.com&gt;Cc: KP Singh &lt;kpsingh@kernel.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Martin KaFai Lau &lt;martin.lau@linux.dev&gt;Cc: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Nicolas Schier &lt;nicolas@fjasle.eu&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Song Liu &lt;song@kernel.org&gt;Cc: Stanislav Fomichev &lt;sdf@google.com&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Cc: Yonghong Song &lt;yhs@fb.com&gt;Cc: bpf@vger.kernel.orgLink: https://lore.kernel.org/r/20221117004356.279422-2-irogers@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Thu, 17 Nov 2022 00:43:51 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>8d1f68bd - tools lib api: Add missing install headers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#8d1f68bd</link>
        <description>tools lib api: Add missing install headersHeaders necessary for the perf build.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Acked-by: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Andrii Nakryiko &lt;andrii.nakryiko@gmail.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Nicolas Schier &lt;nicolas@fjasle.eu&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Cc: bpf@vger.kernel.orgLink: http://lore.kernel.org/lkml/20221109184914.1357295-8-irogers@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Wed, 09 Nov 2022 18:49:07 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>a6efaa2c - tools lib api: Add install target</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#a6efaa2c</link>
        <description>tools lib api: Add install targetThis allows libapi to be installed as a dependency.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Acked-by: Namhyung Kim &lt;namhyung@kernel.org&gt;Cmc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Andrii Nakryiko &lt;andrii.nakryiko@gmail.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Cc: bpf@vger.kernel.orgCc: nicolas schier &lt;nicolas@fjasle.eu&gt;Link: http://lore.kernel.org/lkml/20221109184914.1357295-2-irogers@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Wed, 09 Nov 2022 18:49:01 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>5c816641 - kbuild: replace $(if A,A,B) with $(or A,B)</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#5c816641</link>
        <description>kbuild: replace $(if A,A,B) with $(or A,B)$(or ...) is available since GNU Make 3.81, and useful to shorten thecode in some places.Covert as follows:  $(if A,A,B)  --&gt;  $(or A,B)This patch also converts:  $(if A, A, B) --&gt; $(or A, B)Strictly speaking, the latter is not an equivalent conversion becauseGNU Make keeps spaces after commas; if A is not empty, $(if A, A, B)expands to &quot; A&quot;, while $(or A, B) expands to &quot;A&quot;.Anyway, preceding spaces are not significant in the code hunks I touched.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Reviewed-by: Nicolas Schier &lt;nicolas@fjasle.eu&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Fri, 11 Feb 2022 05:14:11 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>58b79186 - tools lib api: Fix make DEBUG=1 build</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#58b79186</link>
        <description>tools lib api: Fix make DEBUG=1 buildDo not use -D_FORTIFY_SOURCE=2 for DEBUG build as it seems to mess upwith debuginfo, which results in bad gdb experience.We already do that for tools/perf/.Signed-off-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: David Ahern &lt;dsahern@gmail.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Peter Zijlstra &lt;a.p.zijlstra@chello.nl&gt;Link: http://lkml.kernel.org/r/20170908084621.31595-1-jolsa@kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Fri, 08 Sep 2017 08:46:19 +0000</pubDate>
        <dc:creator>Jiri Olsa &lt;jolsa@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>3866058e - perf tools: Robustify detection of clang binary</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#3866058e</link>
        <description>perf tools: Robustify detection of clang binaryPrior to this patch, make scripts tested for CLANG with ifeq ($(CC),clang), failing to detect CLANG binaries with different names. Fix it bytesting for the existence of __clang__ macro in the list of compilerdefined macros.Signed-off-by: David Carrillo-Cisneros &lt;davidcc@google.com&gt;Acked-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Paul Turner &lt;pjt@google.com&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Link: http://lkml.kernel.org/r/20170827075442.108534-5-davidcc@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Sun, 27 Aug 2017 07:54:40 +0000</pubDate>
        <dc:creator>David Carrillo-Cisneros &lt;davidcc@google.com&gt;</dc:creator>
    </item>
<item>
        <title>12024aac - tools lib: Allow external definition of CC, AR and LD</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#12024aac</link>
        <description>tools lib: Allow external definition of CC, AR and LDUse already defined values for CC, AR and LD when available.Signed-off-by: David Carrillo-Cisneros &lt;davidcc@google.com&gt;Acked-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Paul Turner &lt;pjt@google.com&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Link: http://lkml.kernel.org/r/20170827075442.108534-4-davidcc@google.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Sun, 27 Aug 2017 07:54:39 +0000</pubDate>
        <dc:creator>David Carrillo-Cisneros &lt;davidcc@google.com&gt;</dc:creator>
    </item>
<item>
        <title>49b3cd30 - tools: Set the maximum optimization level according to the compiler being used</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#49b3cd30</link>
        <description>tools: Set the maximum optimization level according to the compiler being usedTo avoid this when using clang:  warning: optimization level &apos;-O6&apos; is not supported; using &apos;-O3&apos; insteadCc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: David Ahern &lt;dsahern@gmail.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Wang Nan &lt;wangnan0@huawei.com&gt;Link: http://lkml.kernel.org/n/tip-kaghp8ddvzdsg03putemcq96@git.kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Tue, 14 Feb 2017 13:55:27 +0000</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>e19b7cee - make use of make variable CURDIR instead of calling pwd</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#e19b7cee</link>
        <description>make use of make variable CURDIR instead of calling pwdmake already provides the current working directory in a variable, so makeuse of it instead of forking a shell. Also replace usage of PWD byCURDIR. PWD is provided by most shells, but not all, so this makes thebuild system more robust.Signed-off-by: Uwe Kleine-K&#246;nig &lt;u.kleine-koenig@pengutronix.de&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Tue, 22 Nov 2016 08:30:26 +0000</pubDate>
        <dc:creator>Uwe Kleine-K&#246;nig &lt;u.kleine-koenig@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>b31e3e33 - tools lib api fs: Use str_error_r()</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#b31e3e33</link>
        <description>tools lib api fs: Use str_error_r()To make it portable to non-glibc systems, that follow the XSI variantinstead of the GNU specific one that gets in place when _GNU_SOURCE isdefined.Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: David Ahern &lt;dsahern@gmail.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Steven Rostedt &lt;rostedt@goodmis.org&gt;Cc: Wang Nan &lt;wangnan0@huawei.com&gt;Link: http://lkml.kernel.org/n/tip-mixgnh3iyajuqogn2opsocdy@git.kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Fri, 08 Jul 2016 18:26:50 +0000</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>b983d544 - tools lib api: Respect WERROR=0 for build</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#b983d544</link>
        <description>tools lib api: Respect WERROR=0 for buildThis enables the workaround for compilers that generate warnings whencompiling libapi.Signed-off-by: Chris Phlipot &lt;cphlipot0@gmail.com&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Link: http://lkml.kernel.org/r/1467349955-1135-2-git-send-email-cphlipot0@gmail.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Fri, 01 Jul 2016 05:12:32 +0000</pubDate>
        <dc:creator>Chris Phlipot &lt;cphlipot0@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>703e0165 - tools lib api: Respect CROSS_COMPILE for the linker</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#703e0165</link>
        <description>tools lib api: Respect CROSS_COMPILE for the linkerThis fixes cross compilation of libapi.Signed-off-by: Lucas Stach &lt;l.stach@pengutronix.de&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: kernel@pengutronix.deCc: patchwork-lst@pengutronix.deLink: http://lkml.kernel.org/r/1458235670-27341-1-git-send-email-l.stach@pengutronix.deSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Thu, 17 Mar 2016 17:27:50 +0000</pubDate>
        <dc:creator>Lucas Stach &lt;l.stach@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>ca70c24f - tools: Move utilities.mak from perf to tools/scripts/</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#ca70c24f</link>
        <description>tools: Move utilities.mak from perf to tools/scripts/As it is used by several other tools, better move it outside tools/perf.Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Josh Poimboeuf &lt;jpoimboe@redhat.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Wang Nan &lt;wangnan0@huawei.com&gt;Link: http://lkml.kernel.org/n/tip-34s9kue3xq9w5mijdmfrfx8s@git.kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Fri, 18 Mar 2016 16:57:20 +0000</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>975f14fa - tools lib api: Add debug output support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#975f14fa</link>
        <description>tools lib api: Add debug output supportAdding support for warning/info/debug output within libapi code. Addingfollowing macros:  pr_warning(fmt, ...)  pr_info(fmt, ...)  pr_debug(fmt, ...)Also adding libapi_set_print function to set above functions. This willbe used in perf to set standard debug handlers for libapi.Adding 2 header files:  debug.h    - to be used outside libapi, contains      libapi_set_print interface  debug-internal.h    - to be used within libapi, contains      pr_warning/pr_info/pr_debug definitionsSigned-off-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: David Ahern &lt;dsahern@gmail.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Peter Zijlstra &lt;a.p.zijlstra@chello.nl&gt;Link: http://lkml.kernel.org/r/1455465826-8426-2-git-send-email-jolsa@kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Sun, 14 Feb 2016 16:03:42 +0000</pubDate>
        <dc:creator>Jiri Olsa &lt;jolsa@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>7c422f55 - tools build: Build fixdep helper from perf and basic libs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#7c422f55</link>
        <description>tools build: Build fixdep helper from perf and basic libsAdding the fixdep target into the Makefile.include to ease up building offixdep helper, that needs to be built before we dive in to the build itself.The user can invoke the fixdep target to build the helper.Signed-off-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: David Ahern &lt;dsahern@gmail.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Peter Zijlstra &lt;a.p.zijlstra@chello.nl&gt;Link: http://lkml.kernel.org/r/1443004442-32660-8-git-send-email-jolsa@kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Wed, 23 Sep 2015 10:34:02 +0000</pubDate>
        <dc:creator>Jiri Olsa &lt;jolsa@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ab6201d0 - tools build: Add Makefile.include</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/lib/api/Makefile#ab6201d0</link>
        <description>tools build: Add Makefile.includeTo ease up build framework code setup for users.More shared code will be added in the following patches.Signed-off-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: David Ahern &lt;dsahern@gmail.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Peter Zijlstra &lt;a.p.zijlstra@chello.nl&gt;Link: http://lkml.kernel.org/r/1443004442-32660-2-git-send-email-jolsa@kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/lib/api/Makefile</description>
        <pubDate>Wed, 23 Sep 2015 10:33:56 +0000</pubDate>
        <dc:creator>Jiri Olsa &lt;jolsa@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
