<?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>d0b2dbfa - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#d0b2dbfa</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/bin/expr/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>d511b20a - Add HAS_TESTS to all Makefiles that are currently using the</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#d511b20a</link>
        <description>Add HAS_TESTS to all Makefiles that are currently using the`SUBDIR.${MK_TESTS}+= tests` idiom.This is a follow up to r321912.

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Wed, 02 Aug 2017 08:50:42 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4b330699 - Convert traditional ${MK_TESTS} conditional idiom for including test</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#4b330699</link>
        <description>Convert traditional ${MK_TESTS} conditional idiom for including testdirectories to SUBDIR.${MK_TESTS} idiomThis is being done to pave the way for future work (and homogenity) in^/projects/make-check-sandbox .No functional change intended.MFC after:	1 weeks

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Wed, 02 Aug 2017 08:35:51 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ac2875fa - Explicitly add unmarked bin/ binaries to the runtime package.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#ac2875fa</link>
        <description>Explicitly add unmarked bin/ binaries to the runtime package.Note: tcsh(1) has a MK_TCSH=no test, so this should be a separatepackage, which requires pre-install/post-install scripts, to beadded later.Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Tue, 09 Feb 2016 16:58:50 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c9699222 - Build expr with -fwrapv, since it relies on signed integer wrapping</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#c9699222</link>
        <description>Build expr with -fwrapv, since it relies on signed integer wrappinghaving defined behavior.Reported by:	rodrigcMFC after:	3 days

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Sun, 22 Mar 2015 22:40:32 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e15138e5 - Integrate contrib/netbsd-tests/bin/expr into the build/kyua as bin/expr/tests</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#e15138e5</link>
        <description>Integrate contrib/netbsd-tests/bin/expr into the build/kyua as bin/expr/testsMFC after: 1 weekSponsored by: EMC / Isilon Storage Division

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Mon, 19 Jan 2015 06:13:07 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>478290db - Check in first src/tests snapshot from NetBSD anoncvs</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#478290db</link>
        <description>Check in first src/tests snapshot from NetBSD anoncvsSources were obtained like so:% export CVSROOT=&quot;anoncvs@anoncvs.NetBSD.org:/cvsroot&quot;% cvs -z9 co -D &quot;09/30/2014 20:45&quot; -P src/tests% mv src/tests/* tests/dist/.&apos;*CVS*&apos; has been added to svn:ignore to ease updating periodically fromupstreamSome line ending issues had to be resolved with test outputs and scriptsvia dos2unix and by deleting the eol-style property set in usr.bin/sortDiscussed with: rpauloSponsored by: EMC / Isilon Storage Division

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Wed, 01 Oct 2014 04:07:17 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7e659f94 - Add the Clang specific -Wmissing-variable-declarations to WARNS=6.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#7e659f94</link>
        <description>Add the Clang specific -Wmissing-variable-declarations to WARNS=6.This compiler flag enforces that that people either mark variablesstatic or use an external declarations for the variable, similar to how-Wmissing-prototypes works for functions.Due to the fact that Yacc/Lex generate code that cannot trivially bechanged to not warn because of this (lots of yy* variables), add aNO_WMISSING_VARIABLE_DECLARATIONS that can be used to turn off thisspecific compiler warning.Announced on:	toolchain@

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Fri, 19 Apr 2013 19:45:00 +0000</pubDate>
        <dc:creator>Ed Schouten &lt;ed@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>eac4bdcc - Get this area compiling with the highest WARNS= that it works with.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#eac4bdcc</link>
        <description>Get this area compiling with the highest WARNS= that it works with.Obsolete WFORMAT= junk also removed where possible.OK&apos;ed by:	obrienTested on:	sparc64, alpha, i386

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Fri, 13 Jun 2003 07:04:02 +0000</pubDate>
        <dc:creator>Mark Murray &lt;markm@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>efbb5e22 - Disable -Werror when building -- the old version of gcc used on IA32 can&apos;t</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#efbb5e22</link>
        <description>Disable -Werror when building -- the old version of gcc used on IA32 can&apos;tdeal with C99 formats.

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Sat, 23 Mar 2002 00:44:00 +0000</pubDate>
        <dc:creator>Garrett Wollman &lt;wollman@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a7482907 - Default to WARNS=2.  Binary builds that cannot handle this must explicitly</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#a7482907</link>
        <description>Default to WARNS=2.  Binary builds that cannot handle this must explicitlyset WARNS=0.Reviewed by:	mike

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Tue, 04 Dec 2001 01:57:47 +0000</pubDate>
        <dc:creator>David E. O&apos;Brien &lt;obrien@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3d06e95d - Fix warnings to compile with WARNS=2 on i386 and alpha</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#3d06e95d</link>
        <description>Fix warnings to compile with WARNS=2 on i386 and alphaReviewed by:	bde

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Sat, 26 May 2001 20:45:25 +0000</pubDate>
        <dc:creator>Kris Kennaway &lt;kris@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2a456239 - $Id$ -&gt; $FreeBSD$</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#2a456239</link>
        <description>$Id$ -&gt; $FreeBSD$

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Fri, 27 Aug 1999 23:15:48 +0000</pubDate>
        <dc:creator>Peter Wemm &lt;peter@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7e44350e - Simplified using new yacc rules and by not generating y.tab.h.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#7e44350e</link>
        <description>Simplified using new yacc rules and by not generating y.tab.h.

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Mon, 04 May 1998 18:41:16 +0000</pubDate>
        <dc:creator>Bruce Evans &lt;bde@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b97fa2ef - Revert $FreeBSD$ to $Id$</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#b97fa2ef</link>
        <description>Revert $FreeBSD$ to $Id$

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Sat, 22 Feb 1997 14:13:04 +0000</pubDate>
        <dc:creator>Peter Wemm &lt;peter@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1130b656 - Make the long-awaited change from $Id$ to $FreeBSD$</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#1130b656</link>
        <description>Make the long-awaited change from $Id$ to $FreeBSD$This will make a number of things easier in the future, as well as (finally!)avoiding the Id-smashing problem which has plagued developers for so long.Boy, I&apos;m glad we&apos;re not using sup anymore.  This update would have beeninsane otherwise.

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Tue, 14 Jan 1997 07:20:47 +0000</pubDate>
        <dc:creator>Jordan K. Hubbard &lt;jkh@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>fc15a730 - Backout yacc changes</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#fc15a730</link>
        <description>Backout yacc changes

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Sun, 02 Jun 1996 17:05:48 +0000</pubDate>
        <dc:creator>Poul-Henning Kamp &lt;phk@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>aa0e82cf - Use default yacc rule.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#aa0e82cf</link>
        <description>Use default yacc rule.

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Thu, 30 May 1996 20:44:09 +0000</pubDate>
        <dc:creator>Poul-Henning Kamp &lt;phk@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9fb93307 - ``mv&apos;&apos; -&gt; ``mv -f&apos;&apos;</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#9fb93307</link>
        <description>``mv&apos;&apos; -&gt; ``mv -f&apos;&apos;``rm&apos;&apos; -&gt; ``rm -f&apos;&apos;so mv/rm may not ask for confirmation if you are not root

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Tue, 07 May 1996 23:19:49 +0000</pubDate>
        <dc:creator>Wolfram Schneider &lt;wosch@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2162b2d2 - Remove trailing whitespace.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/bin/expr/Makefile#2162b2d2</link>
        <description>Remove trailing whitespace.Reviewed by:	phk

            List of files:
            /freebsd-14.2/bin/expr/Makefile</description>
        <pubDate>Tue, 30 May 1995 00:07:29 +0000</pubDate>
        <dc:creator>Rodney W. Grimes &lt;rgrimes@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
