]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/bmake/unit-tests/export-all
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / bmake / unit-tests / export-all
1 # $Id: export-all,v 1.1.1.2 2010/04/21 04:26:14 sjg Exp $
2
3 UT_OK=good
4 UT_F=fine
5
6 # the old way to do :tA
7 M_tAbad = C,.*,cd & \&\& 'pwd',:sh
8 # the new
9 M_tA = tA
10
11 here := ${.PARSEDIR}
12
13 # this will cause trouble (recursing if we let it)
14 UT_BADDIR = ${${here}/../${here:T}:L:${M_tAbad}:T}
15 # this will be ok
16 UT_OKDIR = ${${here}/../${here:T}:L:${M_tA}:T}
17
18 .export
19
20 .include "export"
21
22 UT_TEST=export-all
23 UT_ALL=even this gets exported