installHeaders is okay.

This commit is contained in:
Ozan Çağlayan
2009-04-08 18:18:59 +00:00
parent 9e5b5ec501
commit 388c63f205
+6 -1
View File
@@ -44,11 +44,16 @@ def installHeaders(*additionalDirs):
# Install additional headers passed by actions.py
for d in additionalDirs:
system("cp -a %s/*.h %s/%s" % (destination, d))
system("cp -a %s/*.h %s/%s" % (d, destination, d))
# Install remaining headers
system("cp -a scripts include %s" % destination)
# Finally copy the include directories found in arch/
system("(find arch -name include -type d -print | \
xargs -n1 -i: find : -type f) | \
cpio -pd --preserve-modification-time %s" % destination)
def installSource():
pass