Up to [cvs.NetBSD.org] / src / usr.bin / make / unit-tests
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.7 / (download) - annotate - [select for diffs], Wed Feb 9 21:24:29 2022 UTC (11 months, 4 weeks ago) by rillig
Branch: MAIN
CVS Tags: netbsd-10-base,
netbsd-10,
HEAD
Changes since 1.6: +3 -2
lines
Diff to previous 1.6 (colored)
tests/make: remove redundant 'echo' from variable assignments Before main.c 1.231 from 2014-09-09, a variable assignment using the operator '!=' generated a warning "Couldn't read shell's output" if the output of the command was empty. The simplest way to suppress this wrong warning was to add an empty 'echo' to the command. This hack is no longer needed.
Revision 1.6 / (download) - annotate - [select for diffs], Wed Feb 9 21:09:24 2022 UTC (11 months, 4 weeks ago) by rillig
Branch: MAIN
Changes since 1.5: +1 -2
lines
Diff to previous 1.5 (colored)
make: fix mistakes, spelling and typos in comments and manual page No binary change for -DNDEBUG.
Revision 1.5 / (download) - annotate - [select for diffs], Sun Jul 4 01:28:54 2021 UTC (19 months ago) by sjg
Branch: MAIN
Changes since 1.4: +6 -5
lines
Diff to previous 1.4 (colored)
Do not assume /tmp is safe to use if TMPDIR is set
Revision 1.4 / (download) - annotate - [select for diffs], Sat Nov 14 07:36:00 2020 UTC (2 years, 2 months ago) by sjg
Branch: MAIN
CVS Tags: cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1,
cjep_staticlib_x-base,
cjep_staticlib_x
Changes since 1.3: +5 -1
lines
Diff to previous 1.3 (colored)
Remove RO_OBJDIR when done
Revision 1.3 / (download) - annotate - [select for diffs], Fri Nov 13 09:01:59 2020 UTC (2 years, 2 months ago) by rillig
Branch: MAIN
Changes since 1.2: +2 -2
lines
Diff to previous 1.2 (colored)
make(1): in lint mode, check for ".else <cond>"
Revision 1.2 / (download) - annotate - [select for diffs], Thu Nov 12 23:53:17 2020 UTC (2 years, 2 months ago) by sjg
Branch: MAIN
Changes since 1.1: +2 -2
lines
Diff to previous 1.1 (colored)
Use explicit MAKEOBJDIR to avoid tripping over /usr/obj
Revision 1.1 / (download) - annotate - [select for diffs], Thu Nov 12 23:35:21 2020 UTC (2 years, 2 months ago) by sjg
Branch: MAIN
Pass a writable flag to Main_SetObjdir to control writable check For curdir and an explicit .OBJDIR target, we allow for the directory to be read-only. During InitObjdir we otherwise default to requiring objdir to be writable - this can be controlled by env variable MAKE_OBJDIR_CHECK_WRITABLE Add unit-tests/objdir-writable Reviewed by: christos rillig