mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
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
This commit is contained in:
parent
90f398225a
commit
0432c7ee70
1 changed files with 2 additions and 2 deletions
|
@ -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" );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue