summaryrefslogtreecommitdiff
path: root/tools/addtargetdir.pl
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-08-21 18:07:12 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-08-21 18:07:12 +0000
commit27c509fc552013ba07e80cfcee1be1e8bf813dbc (patch)
treea8669c8c188236833a7a53994613b511264daf5a /tools/addtargetdir.pl
parentf30add4dc08fe63b8417a4e63203649a3434d0f4 (diff)
makefiles
- some functions don't need to return their output, drop $(shell ... ) and prefix with $(SILENT), make V=1 will show the complete scripts being run - tweak make.dep generation: make the temporary file appear in root.make only, and remove a useless "real command", there is already a real command (mv) - make addtargetdir.pl terminate its output with a newline ($(shell) did that for us) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27855 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/addtargetdir.pl')
-rwxr-xr-xtools/addtargetdir.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/addtargetdir.pl b/tools/addtargetdir.pl
index 6a9a72a878..bf5fe8a144 100755
--- a/tools/addtargetdir.pl
+++ b/tools/addtargetdir.pl
@@ -39,3 +39,4 @@ for (split(/[\s\\]+/m, <STDIN>)) {
print " \\\n $src";
}
}
+print "\n";