* Run configure-plugins from configure.hook

- Should fix the build with -j
* Fix cp of unexistent zip file in build.sh
This commit is contained in:
pancake 2010-07-13 12:32:18 +02:00
parent b58a0bac89
commit f4b2b01814
2 changed files with 7 additions and 1 deletions

View File

@ -303,7 +303,11 @@ if [ -n "$cc" ]; then
logcmd ${MAKE} ${MAKEFLAGS}
log "[==] mingw32 w32dist"
logcmd ${MAKE} w32dist
cp radare2-w32*.zip ${WD}
if [ -e "radare2-w32*.zip" ]; then
cp radare2-w32*.zip ${WD}
else
log "[==] Cannot find radare2-w32*.zip"
fi
else
log "[==] Cannot find any compatible w32 crosscompiler. Report if not true"
fi

2
configure.hook Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
./configure-plugins