summaryrefslogtreecommitdiff
path: root/test/silly
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-02-14 02:56:16 +0000
committerMike Frysinger <vapier@gentoo.org>2006-02-14 02:56:16 +0000
commit4697c772ca3809829170c3cbb07938a0e729dfa8 (patch)
tree8d6f97ac3482acd8e2c1f2d5f977774fe542d444 /test/silly
parent93b85123789edb7bbbf9fb7b90dcdfaf696febe1 (diff)
dont bother exporting variables and use := where appropriate
Diffstat (limited to 'test/silly')
-rw-r--r--test/silly/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/silly/Makefile b/test/silly/Makefile
index 57739a447..68d3466cd 100644
--- a/test/silly/Makefile
+++ b/test/silly/Makefile
@@ -1,9 +1,9 @@
# uClibc silly tests
# Licensed under the GNU Library General Public License, see COPYING.LIB
-TESTS = hello tiny
+TESTS := hello tiny
include ../Test.mak
-export RET_hello = 42
-export RET_tiny = 42
+RET_hello := 42
+RET_tiny := 42