diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-02-13 23:45:05 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-02-13 23:45:05 +0000 |
commit | fad90fc24c99a9710464b5e5fde2c7577879b8fe (patch) | |
tree | ba205d28efd3b29f02de6e0ce6ef2a935516f3fd /cpp/makebindist.py | |
parent | Fixed bug 1828 (diff) | |
download | ice-fad90fc24c99a9710464b5e5fde2c7577879b8fe.tar.bz2 ice-fad90fc24c99a9710464b5e5fde2c7577879b8fe.tar.xz ice-fad90fc24c99a9710464b5e5fde2c7577879b8fe.zip |
Clean out third party stuff from Make.rules.mak
Diffstat (limited to 'cpp/makebindist.py')
-rwxr-xr-x | cpp/makebindist.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/cpp/makebindist.py b/cpp/makebindist.py index 5ab2fecd1ce..6eb339273bb 100755 --- a/cpp/makebindist.py +++ b/cpp/makebindist.py @@ -398,11 +398,8 @@ def editMakeRulesMak(filename, version): # Do nothing. # pass - elif line.startswith('THIRDPARTY_HOME'): - # - # Do nothing. - # - pass + elif line.startswith('# If third party'): + state = 'thirdparty' else: print line.rstrip('\n') elif state == 'header': @@ -429,6 +426,10 @@ THIRDPARTY_HOME = elif state == 'untilprefix': if line.startswith('prefix'): state = 'done' + elif state == 'thirdparty': + if line.startswith('# For VC80 and VC80'): + print line.rstrip('\n') + state = 'done' # # Dependency files are all going to be bogus since they contain relative # paths to Ice headers. We need to adjust this |