summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-06-18 13:54:44 +0100
committerCarl Hetherington <cth@carlh.net>2019-06-18 13:54:44 +0100
commitd946592a36b308d07fe6c6634962ddafe645f16b (patch)
tree3729ace265ada3354beb1d1da3c7e50137670e28 /cscript
parent13d8fe9e0092df0f593452f2ee0560ef7e48793a (diff)
Hackz.
Diffstat (limited to 'cscript')
-rw-r--r--cscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/cscript b/cscript
index 09465d6..0dc3629 100644
--- a/cscript
+++ b/cscript
@@ -21,7 +21,7 @@ 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 install')
+ 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 +29,7 @@ def build(target, options):
elif target.platform == 'windows':
target.command('make mingw')
target.command('make -j%d -C build_mingw')
- target.command('make install')
+ 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)