[ros-diffs] [dreimer] 33252: Properly set Stripping ONLY if you want it. Not vice versa

dreimer at svn.reactos.org dreimer at svn.reactos.org
Fri May 2 22:59:05 CEST 2008


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/Powershell/Build.ps1?rev=33252&r1=33251&r2=33252&view=diff
==============================================================================
--- 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"



More information about the Ros-diffs mailing list