Author: dreimer
Date: Fri May 2 15:59:04 2008
New Revision: 33252
URL:
http://svn.reactos.org/svn/reactos?rev=33252&view=rev
Log:
Properly set Stripping ONLY if you want it. Not vice versa
Modified:
trunk/tools/RosBE/RosBE-Windows/Powershell/Build.ps1
Modified: trunk/tools/RosBE/RosBE-Windows/Powershell/Build.ps1
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/Powershe…
==============================================================================
--- trunk/tools/RosBE/RosBE-Windows/Powershell/Build.ps1 [iso-8859-1] (original)
+++ trunk/tools/RosBE/RosBE-Windows/Powershell/Build.ps1 [iso-8859-1] Fri May 2 15:59:04
2008
@@ -26,7 +26,7 @@
# Check if strip or ccache are being used and set the appropriate options.
#
if ($_ROSBE_STRIP -ne $null) {
- if ($_ROSBE_STRIP -ne 1) {
+ if ($_ROSBE_STRIP -eq 1) {
$ENV:ROS_LEAN_AND_MEAN = "yes"
} else {
$ENV:ROS_LEAN_AND_MEAN = "no"