summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
Diffstat (limited to 'cscript')
-rw-r--r--cscript2
1 files changed, 0 insertions, 2 deletions
diff --git a/cscript b/cscript
index 0dc3629..931ea20 100644
--- a/cscript
+++ b/cscript
@@ -21,7 +21,6 @@ def build(target, options):
if target.platform == 'linux' or target.platform == 'osx':
target.command('make generic')
target.command('make -j%d -C build_generic' % target.parallel)
- target.command('make -C build_generic install')
target.command('mkdir -p %s/include/lwext4' % target.directory)
target.command('cp -r include/* %s/include/lwext4' % target.directory)
target.command('cp blockdev/linux/file_dev.h %s/include/lwext4' % target.directory)
@@ -29,7 +28,6 @@ def build(target, options):
elif target.platform == 'windows':
target.command('make mingw')
target.command('make -j%d -C build_mingw')
- target.command('make -C build_mingw install')
target.command('mkdir -p %s/include/lwext4' % target.directory)
target.command('cp -r include/* %s/include/lwext4' % target.directory)
target.command('cp blockdev/windows/file_dev.h %s/include/lwext4' % target.directory)