<?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>bb0955ee4db8870bb013cf7d208ad9b2fc27b619 - bin/sh: Fix the build</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#bb0955ee4db8870bb013cf7d208ad9b2fc27b619</link>
        <description>bin/sh: Fix the buildRemoving &lt;bsd.prog.mk&gt; was unintentional; put it back.Fixes:		d31e342bcc8e (&quot;sh: Remove /.profile&quot;)MFC after:	1 day

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Tue, 30 Sep 2025 06:22:39 +0000</pubDate>
        <dc:creator>Lexi Winter &lt;ivy@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d31e342bcc8e22d7eb25c21a711cd4b8a54db6c0 - sh: Remove /.profile</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#d31e342bcc8e22d7eb25c21a711cd4b8a54db6c0</link>
        <description>sh: Remove /.profileroot&apos;s home directory was moved to /root many years ago, so there&apos;s noreason to keep this old link.  This brings sh in line with csh, where/.cshrc was removed in dcb65c5a94d4.Relnotes:	yesApproved by:	re (cperciva)MFC after:	1 dayPR:		289097Reviewed by:	cperciva, jilles, bapt, emasteDifferential Revision:	https://reviews.freebsd.org/D52161

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Tue, 30 Sep 2025 06:02:06 +0000</pubDate>
        <dc:creator>Lexi Winter &lt;ivy@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b197d2abcb6895d78bc9df8404e374397aa44748 - sh: Fix non-NO_ROOT installconfig</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#b197d2abcb6895d78bc9df8404e374397aa44748</link>
        <description>sh: Fix non-NO_ROOT installconfigWhen building without NO_ROOT, ${TAG_ARGS} is not set, which means wepass &quot;,config&quot; as an install(1) argument.  Only add the config tag if${TAG_ARGS} is defined to begin with.Fixes:	aa730a66bc74 (&quot;sh: Add config tag to /.profile&quot;)Reported by:	bz

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Tue, 02 Sep 2025 11:47:36 +0000</pubDate>
        <dc:creator>Lexi Winter &lt;ivy@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>aa730a66bc74696df85b21ec2719c75d8eab8c9f - sh: Add config tag to /.profile</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#aa730a66bc74696df85b21ec2719c75d8eab8c9f</link>
        <description>sh: Add config tag to /.profileThe file /.profile is installed as a hard link to /root/.profile. Thefile in /root has the config tag, but the file in / does not, whichcauses it to be overwritten by pkg upgrade. Since they&apos;re linked, thisalso overwrites the file in /root.Add the config tag to the file in / as well, so pkg treates both linksas config files and won&apos;t overwrite them.PR:		289097MFC after:	3 daysReviewed by:	bapt, emasteDifferential Revision:	https://reviews.freebsd.org/D52162

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Tue, 02 Sep 2025 08:22:56 +0000</pubDate>
        <dc:creator>Lexi Winter &lt;ivy@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/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/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>90aea514c6249118e880d75972d063362f4bf492 - bin: Remove ancient SCCS tags.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#90aea514c6249118e880d75972d063362f4bf492</link>
        <description>bin: Remove ancient SCCS tags.Remove ancient SCCS tags from the tree, automated scripting, with twominor fixup to keep things compiling. All the common forms in the treewere removed with a perl script.Sponsored by:		Netflix

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Thu, 23 Nov 2023 17:21:37 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a6ed8c9593031abf6fa73661be55c226caa362d6 - Fix /root permissions after &apos;make installworld&apos;</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#a6ed8c9593031abf6fa73661be55c226caa362d6</link>
        <description>Fix /root permissions after &apos;make installworld&apos;According to /etc/mtree/BSD.root.dist /root should have0750 permissions, but the build target &apos;make installworld&apos;changes these to 0755.This is caused by the installation of the configurationfiles of sh(1) and csh(1).Correct this by specifying the correct default /root permissions.PR:	273342Reviewed by:	jillesApproved by:	jillesMFC after:	2 weeksDifferential Revision:https://reviews.freebsd.org/D42395

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Thu, 16 Nov 2023 09:59:38 +0000</pubDate>
        <dc:creator>Thomas Eberhardt &lt;sneakywumpus@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /src/bin/sh/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>fcc8d727023c3ac0f12b8aebc50f892cfd32992b - Separate dependencies on tools built for host.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#fcc8d727023c3ac0f12b8aebc50f892cfd32992b</link>
        <description>Separate dependencies on tools built for host.When generated files depend on tools that need to be built for host,we need to carefully separate them for the DIRDEPS_BUILD so weonly build them once.Reviewed by:	stevekSponsored by:	Juniper Networks, Inc.

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Fri, 30 Jun 2023 06:52:03 +0000</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>8fe4f8f7a75f3f6d1fc52e31a6d25a112d4644fd - Fix building host tools for host</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#8fe4f8f7a75f3f6d1fc52e31a6d25a112d4644fd</link>
        <description>Fix building host tools for hostSeveral makefile depend on tools built for host.At least when using DIRDEPS_BUILD we can build these for thepseudo machine &quot;host&quot; to facilitate building on older host versions.Ideally we would build these tools in their own directories to avoidbuilding more than needed.For now, setting an appropriate default for BTOOLSPATH will sufficeReviewed by:	stevekSponsored by:	Juniper Networks, Inc.Differential Revision:	https://reviews.freebsd.org/D39708

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Thu, 20 Apr 2023 17:05:43 +0000</pubDate>
        <dc:creator>Simon J. Gerraty &lt;sjg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1dbb9994d4dd44357976daedcac7d280e8327382 - sh: install hard link with same mode as target</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#1dbb9994d4dd44357976daedcac7d280e8327382</link>
        <description>sh: install hard link with same mode as targetPreviously when using NO_ROOT we recorded a METALOG entry for the/.profile hard link with a different mode than the link target, which isnot permitted.Reviewed by:	baptSponsored by:	The FreeBSD FoundationDifferential Revision:	https://reviews.freebsd.org/D37476

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Wed, 23 Nov 2022 15:20:49 +0000</pubDate>
        <dc:creator>Ed Maste &lt;emaste@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f52c431b186d91df7b18876529223a8855f1adc5 - Bump WARNS for sh(1).</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#f52c431b186d91df7b18876529223a8855f1adc5</link>
        <description>Bump WARNS for sh(1).Reviewed by:	jillesMFC after:	2 weeksSponsored by:	DARPADifferential Revision:	https://reviews.freebsd.org/D24181

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Wed, 01 Apr 2020 15:12:51 +0000</pubDate>
        <dc:creator>Edward Tomasz Napierala &lt;trasz@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e532a99901e26d3961f8f5c0e4969fce86f09456 - MFHead @349234</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#e532a99901e26d3961f8f5c0e4969fce86f09456</link>
        <description>MFHead @349234Sponsored by:	The FreeBSD Foundation

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Thu, 20 Jun 2019 15:56:08 +0000</pubDate>
        <dc:creator>Alan Somers &lt;asomers@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c63c5ab001106bc7beb1d3bc92666c73bcd5c94d - Fix .depend files to work for build tools.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#c63c5ab001106bc7beb1d3bc92666c73bcd5c94d</link>
        <description>Fix .depend files to work for build tools.This is somewhat of a follow-up to r335746.MFC after:	2 weeksSponsored by:	DellEMC

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Sat, 15 Jun 2019 17:08:13 +0000</pubDate>
        <dc:creator>Bryan Drewery &lt;bdrewery@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7e565c552a5d3ab1745f5d37c61c51069508f124 - Merge ^/head r343320 through r343570.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#7e565c552a5d3ab1745f5d37c61c51069508f124</link>
        <description>Merge ^/head r343320 through r343570.

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Wed, 30 Jan 2019 07:10:33 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>60315f8f9de3087b0a4ee7fe85a38dfe0c3e0c02 - Install .shrc for root, and set PS1 for the toor account.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#60315f8f9de3087b0a4ee7fe85a38dfe0c3e0c02</link>
        <description>Install .shrc for root, and set PS1 for the toor account.Reviewed by:	jillesMFC after:	2 weeksSponsored by:	DARPA, AFRLDifferential Revision:	https://reviews.freebsd.org/D18872

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Thu, 24 Jan 2019 23:34:51 +0000</pubDate>
        <dc:creator>Edward Tomasz Napierala &lt;trasz@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>da2d1e9d2582eece6aad948897489ca0b5d64d73 - Merge ^/head r338298 through r338391.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#da2d1e9d2582eece6aad948897489ca0b5d64d73</link>
        <description>Merge ^/head r338298 through r338391.

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Wed, 29 Aug 2018 20:54:56 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3611ec604864a7d4dcc9a3ea898c80eb35eef8a0 - Merge ^/head r337646 through r338014.</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#3611ec604864a7d4dcc9a3ea898c80eb35eef8a0</link>
        <description>Merge ^/head r337646 through r338014.

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Sat, 18 Aug 2018 12:15:54 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>bb0955ee4db8870bb013cf7d208ad9b2fc27b619 - bin/sh: Fix the build</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#bb0955ee4db8870bb013cf7d208ad9b2fc27b619</link>
        <description>bin/sh: Fix the buildRemoving &lt;bsd.prog.mk&gt; was unintentional; put it back.Fixes:		d31e342bcc8e (&quot;sh: Remove /.profile&quot;)MFC after:	1 day

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Tue, 30 Sep 2025 06:22:39 +0000</pubDate>
        <dc:creator>Lexi Winter &lt;ivy@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d31e342bcc8e22d7eb25c21a711cd4b8a54db6c0 - sh: Remove /.profile</title>
        <link>http://opengrok.net:8080/history/src/bin/sh/Makefile#d31e342bcc8e22d7eb25c21a711cd4b8a54db6c0</link>
        <description>sh: Remove /.profileroot&apos;s home directory was moved to /root many years ago, so there&apos;s noreason to keep this old link.  This brings sh in line with csh, where/.cshrc was removed in dcb65c5a94d4.Relnotes:	yesApproved by:	re (cperciva)MFC after:	1 dayPR:		289097Reviewed by:	cperciva, jilles, bapt, emasteDifferential Revision:	https://reviews.freebsd.org/D52161

            List of files:
            /src/bin/sh/Makefile</description>
        <pubDate>Tue, 30 Sep 2025 06:02:06 +0000</pubDate>
        <dc:creator>Lexi Winter &lt;ivy@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
