From 01e91e204e0d2a491dbadd54d338da5e2ad9b2a6 Mon Sep 17 00:00:00 2001 From: David Cuartielles Date: Sat, 10 Sep 2005 20:31:09 +0000 Subject: [PATCH] --- build/windows/make.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/build/windows/make.sh b/build/windows/make.sh index 41fa5a896..c0a39bd57 100755 --- a/build/windows/make.sh +++ b/build/windows/make.sh @@ -64,7 +64,7 @@ else mkdir work/tools cp dist/avr_tools.zip . echo Extracting avr tools ... - unzip -q -d work avr.zip + unzip -q -d work avr_tools.zip rm -f avr_tools.zip cp dist/tools/*.* work/tools cp dist/lib/makefile.win work/Makefile @@ -72,6 +72,15 @@ else cp ../../../core/*.* work/core cp dist/core/makefile.win work/core/Makefile + # take care of the examples + mkdir work/examples + cd work/examples + cp ../shared/dist/examples.zip . + echo Extracting examples ... + unzip -q -d . examples.zip + rm -f examples.zip + cd ../.. + # chmod +x the crew find work -name "*.dll" -exec chmod +x {} ';' find work -name "*.exe" -exec chmod +x {} ';'