diff options
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 |