summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChirayu Desai <cdesai@cyanogenmod.org>2013-12-03 22:04:17 +0530
committerGedare Bloom <gedare@rtems.org>2013-12-12 14:55:56 -0500
commitc5a73cce3c2b2f26ad214a19a257a7b75251eef9 (patch)
tree2e260fd2a228c568fdc5aeeefda14fd1aa938fd6
parentcb982b2f06b45bfa44d550016a8a68553347dc67 (diff)
hello: Add missing ".exe" suffix to wscript
-rw-r--r--hello/hello_world_c/wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/hello/hello_world_c/wscript b/hello/hello_world_c/wscript
index a896051..7a7c5bb 100644
--- a/hello/hello_world_c/wscript
+++ b/hello/hello_world_c/wscript
@@ -10,6 +10,6 @@ def build(bld):
rtems.build(bld)
bld(features = 'c cprogram',
- target = 'hello',
+ target = 'hello.exe',
source = ['test.c'])