<?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 2025</copyright>
    <generator>Java</generator><item>
        <title>e9ac41698b2f322d55ccf9da50a3596edb2c1800 - Remove residual blank line at start of Makefile</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#e9ac41698b2f322d55ccf9da50a3596edb2c1800</link>
        <description>Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I&apos;ll just run the command on the branches)Sponsored by: Netflix

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Mon, 15 Jul 2024 04:46:32 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:55:03 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e9ac41698b2f322d55ccf9da50a3596edb2c1800 - Remove residual blank line at start of Makefile</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#e9ac41698b2f322d55ccf9da50a3596edb2c1800</link>
        <description>Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I&apos;ll just run the command on the branches)Sponsored by: Netflix

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Mon, 15 Jul 2024 04:46:32 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:55:03 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>242b24828472137ec4411826b86e753d49bd2c39 - Merge ^/head r306412 through r306905.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#242b24828472137ec4411826b86e753d49bd2c39</link>
        <description>Merge ^/head r306412 through r306905.

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Sun, 09 Oct 2016 13:30:57 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7cca93e61ab919e2126eab2bc5cf5554b491475e - sh: Do not import IFS&apos;s value from the environment.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#7cca93e61ab919e2126eab2bc5cf5554b491475e</link>
        <description>sh: Do not import IFS&apos;s value from the environment.Per Austin group issue #884, always set IFS to $&apos; \t\n&apos;. As before, IFS willbe exported iff it was in the environment.Most shells (e.g. bash, ksh93 and mksh) already did this. This changeimproves predictability, in that scripts can simply rely on the defaultvalue.However, the effect on security is little, since applications should not becalling the shell with attacker-controlled environment variable names in thefirst place and other security-sensitive variables such as PATH should beand are imported by the shell.When using a new sh with an old (before 10.2) libc wordexp(), IFS is nolonger passed on. Otherwise, wordexp() continues to pass along IFS from theenvironment per its documentation.Discussed with:	pfgRelnotes:	yes

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Sat, 08 Oct 2016 13:40:12 +0000</pubDate>
        <dc:creator>Jilles Tjoelker &lt;jilles@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>430f7286a566b1407c7b32ce13585caf5aa59b92 - Merge ^/user/ngie/release-pkg-fix-tests to unbreak how test files are installed</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#430f7286a566b1407c7b32ce13585caf5aa59b92</link>
        <description>Merge ^/user/ngie/release-pkg-fix-tests to unbreak how test files are installedafter r298107Summary of changes:- Replace all instances of FILES/TESTS with ${PACKAGE}FILES. This ensures that  namespacing is kept with FILES appropriately, and that this shouldn&apos;t need  to be repeated if the namespace changes -- only the definition of PACKAGE  needs to be changed- Allow PACKAGE to be overridden by callers instead of forcing it to always be  `tests`. In the event we get to the point where things can be split up  enough in the base system, it would make more sense to group the tests  with the blocks they&apos;re a part of, e.g. byacc with byacc-tests, etc- Remove PACKAGE definitions where possible, i.e. where FILES wasn&apos;t used  previously.- Remove unnecessary TESTSPACKAGE definitions; this has been elided into  bsd.tests.mk- Remove unnecessary BINDIRs used previously with ${PACKAGE}FILES;  ${PACKAGE}FILESDIR is now automatically defined in bsd.test.mk.- Fix installation of files under data/ subdirectories in lib/libc/tests/hash  and lib/libc/tests/net/getaddrinfo- Remove unnecessary .include &lt;bsd.own.mk&gt;s (some opportunistic cleanup)Document the proposed changes in share/examples/tests/tests/... via examplesso it&apos;s clear that ${PACKAGES}FILES is the suggested way forward in terms ofreplacing FILES. share/mk/bsd.README didn&apos;t seem like the appropriate methodof communicating that info.MFC after: never probablyX-MFC with: r298107PR: 209114Relnotes: yesTested with: buildworld, installworld, checkworld; buildworld, packageworldSponsored by: EMC / Isilon Storage Division

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Wed, 04 May 2016 23:20:53 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>13caa468668019a6c93ed6ff65ab21c673b378cb - Merge the projects/release-pkg branch to head.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#13caa468668019a6c93ed6ff65ab21c673b378cb</link>
        <description>Merge the projects/release-pkg branch to head.This allows packaging the base system with pkg(8), includingbut not limited to providing the ability to provide upstreambinary update possibilities for non-tier-1 architectures.This merge is a requirement of the 11.0-RELEASE, and as such,thank you to everyone that has tested the project branch.Documentation in build(7) etc. is still somewhat sparse, butupdates to those parts will follow.Sponsored by:	The FreeBSD Foundation

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Sat, 16 Apr 2016 07:45:30 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c4429c7e7c91b6aba03784229ce63018809840e1 - Fix build.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#c4429c7e7c91b6aba03784229ce63018809840e1</link>
        <description>Fix build.Sponsored by:	The FreeBSD Foundation

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Wed, 03 Feb 2016 18:06:58 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>43faedc1339a9624c7acedb7f3e5624e64da5b99 - First pass to fix the &apos;tests&apos; packages.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#43faedc1339a9624c7acedb7f3e5624e64da5b99</link>
        <description>First pass to fix the &apos;tests&apos; packages.Sponsored by:	The FreeBSD Foundation

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Tue, 02 Feb 2016 22:26:49 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b626f5a73a48f44a31a200291b141e1da408a2ff - MFH r289384-r293170</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#b626f5a73a48f44a31a200291b141e1da408a2ff</link>
        <description>MFH r289384-r293170Sponsored by:	The FreeBSD Foundation

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Mon, 04 Jan 2016 19:19:48 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9a7cd2e6b17c2df762575f14e8d6a0f835d17741 - MFH @r292599</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#9a7cd2e6b17c2df762575f14e8d6a0f835d17741</link>
        <description>MFH @r292599This includes the pluggable TCP framework and other chnages to thenetstack to track for VNET stability.Security:	The FreeBSD Foundation

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Tue, 22 Dec 2015 13:58:11 +0000</pubDate>
        <dc:creator>Bjoern A. Zeeb &lt;bz@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d253cfe3b20c8540826d57e24fcc6afcbdc0429d - sh: Add limited test for ${#@} and ${#*}.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#d253cfe3b20c8540826d57e24fcc6afcbdc0429d</link>
        <description>sh: Add limited test for ${#@} and ${#*}.POSIX leaves the result of expanding ${#@} and ${#*} unspecified, but ensureit is numeric.

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Sun, 06 Dec 2015 14:09:31 +0000</pubDate>
        <dc:creator>Jilles Tjoelker &lt;jilles@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>fb6fa0a785fd0d7d5bcd92f36da53fd0d21fd4a0 - sh: Link tests/parameters/positional8.0 to the build.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#fb6fa0a785fd0d7d5bcd92f36da53fd0d21fd4a0</link>
        <description>sh: Link tests/parameters/positional8.0 to the build.This was forgotten in r291025.

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Sat, 05 Dec 2015 12:55:34 +0000</pubDate>
        <dc:creator>Jilles Tjoelker &lt;jilles@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8f0ea33f2bbf3a6aa80235f0a02fa5f2780c2b17 - Reintegrate head revisions r273096-r277147</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#8f0ea33f2bbf3a6aa80235f0a02fa5f2780c2b17</link>
        <description>Reintegrate head revisions r273096-r277147Sponsored by:	The FreeBSD Foundation

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Tue, 13 Jan 2015 21:29:24 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9268022b74279434ed6300244e3f977e56a8ceb5 - Merge from head@274682</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#9268022b74279434ed6300244e3f977e56a8ceb5</link>
        <description>Merge from head@274682

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Wed, 19 Nov 2014 01:07:58 +0000</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5c9ef378541ddaf6c7606a454ba992c610c09dd0 - Sync to HEAD@r274095.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#5c9ef378541ddaf6c7606a454ba992c610c09dd0</link>
        <description>Sync to HEAD@r274095.

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Tue, 04 Nov 2014 18:22:33 +0000</pubDate>
        <dc:creator>Alexander V. Chernikov &lt;melifaro@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3fb51b3a438b5174b29d15021f6c296e385a81f7 - Treat IFS separators in &quot;$*&quot; as quoted.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#3fb51b3a438b5174b29d15021f6c296e385a81f7</link>
        <description>Treat IFS separators in &quot;$*&quot; as quoted.This makes a difference if IFS starts with *, ?, [ or a CTL* byte.

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Tue, 28 Oct 2014 22:14:31 +0000</pubDate>
        <dc:creator>Jilles Tjoelker &lt;jilles@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>246e7a2b6494cd991b08ac669ed761ecea0cc98c - IFC @r269962</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#246e7a2b6494cd991b08ac669ed761ecea0cc98c</link>
        <description>IFC @r269962Submitted by:	Anish Gupta (akgupt3@gmail.com)

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Tue, 02 Sep 2014 04:22:42 +0000</pubDate>
        <dc:creator>Neel Natu &lt;neel@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ee7b0571c2c18bdec848ed2044223cc88db29bd8 - Merge head from 7/28</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/tests/parameters/Makefile#ee7b0571c2c18bdec848ed2044223cc88db29bd8</link>
        <description>Merge head from 7/28

            List of files:
            /src/bin/sh/tests/parameters/Makefile</description>
        <pubDate>Tue, 19 Aug 2014 06:50:54 +0000</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
