diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-14 02:56:16 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-14 02:56:16 +0000 |
commit | 4697c772ca3809829170c3cbb07938a0e729dfa8 (patch) | |
tree | 8d6f97ac3482acd8e2c1f2d5f977774fe542d444 /test/unistd | |
parent | 93b85123789edb7bbbf9fb7b90dcdfaf696febe1 (diff) |
dont bother exporting variables and use := where appropriate
Diffstat (limited to 'test/unistd')
-rw-r--r-- | test/unistd/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/unistd/Makefile b/test/unistd/Makefile index 3640d7c6a..b7f8a669f 100644 --- a/test/unistd/Makefile +++ b/test/unistd/Makefile @@ -1,10 +1,10 @@ # uClibc unistd tests # Licensed under the GNU Library General Public License, see COPYING.LIB -TESTS = clone errno fork getcwd getopt getopt_long preadwrite tstgetopt vfork +TESTS := clone errno fork getcwd getopt getopt_long preadwrite tstgetopt vfork include ../Test.mak -export OPTS_getopt = -abcXXX -9 -export OPTS_getopt_long = --add XXX --delete YYY --verbose -export OPTS_tstgetopt = -a -b -cfoobar --required foobar --optional=bazbug --none random --col --color --colour +OPTS_getopt := -abcXXX -9 +OPTS_getopt_long := --add XXX --delete YYY --verbose +OPTS_tstgetopt := -a -b -cfoobar --required foobar --optional=bazbug --none random --col --color --colour |