Skip to content

Commit

Permalink
Fix 32bit installer build
Browse files Browse the repository at this point in the history
  • Loading branch information
psieg committed Jul 23, 2015
1 parent c5d9b21 commit 50d1653
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Software/scripts/win32/generate_sln.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@ function fix_static {
for f in $1
do
if [ -f $f -a -r $f ]; then
echo "rewriting to staic linkage: $f"
echo "rewriting to static linkage: $f"
sed "s/MultiThreadedDLL/MultiThreaded/g" "$f" | sed "s/MultiThreadedDebugDLL/MultiThreadedDebug/g" > "$f.tmp" && mv "$f.tmp" "$f"
else
echo "Error: Cannot read $f"
fi
done
}
Expand Down

0 comments on commit 50d1653

Please sign in to comment.