From 0432c7ee706dc2e33ada12380806ceff8577b2cd Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Fri, 30 Jun 2006 15:38:30 +0000 Subject: [PATCH] fixing strip working right strip -sx does not working u must type strip -s -x not togther as -sx, I did add -X direcly after it will strip away local informations as well svn path=/trunk/; revision=22715 --- reactos/tools/rbuild/backend/mingw/modulehandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/tools/rbuild/backend/mingw/modulehandler.cpp b/reactos/tools/rbuild/backend/mingw/modulehandler.cpp index f85e32bd872..b191aa0539d 100644 --- a/reactos/tools/rbuild/backend/mingw/modulehandler.cpp +++ b/reactos/tools/rbuild/backend/mingw/modulehandler.cpp @@ -1,4 +1,4 @@ -/* + o/* * Copyright (C) 2005 Casper S. Hornstrup * * This program is free software; you can redistribute it and/or modify @@ -1517,7 +1517,7 @@ MingwModuleHandler::GenerateRunStripCode () const fprintf ( fMakefile, "\t$(ECHO_STRIP)\n" ); fprintf ( fMakefile, - "\t${strip} -sx $@\n\n" ); + "\t${strip} -s -x -X $@\n\n" ); fprintf ( fMakefile, "endif\n" ); }