Changeset 119490 in webkit


Ignore:
Timestamp:
Jun 5, 2012 8:26:04 AM (12 years ago)
Author:
Csaba Osztrogonác
Message:

[Qt][Win] Fix IDL dependency generation
https://bugs.webkit.org/show_bug.cgi?id=88304

Reviewed by Tor Arne Vestbø.

  • DerivedSources.pri:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r119489 r119490  
     12012-06-05  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        [Qt][Win] Fix IDL dependency generation
     4        https://bugs.webkit.org/show_bug.cgi?id=88304
     5
     6        Reviewed by Tor Arne Vestbø.
     7
     8        * DerivedSources.pri:
     9
    1102012-06-05  Sheriff Bot  <webkit.review.bot@gmail.com>
    211
  • trunk/Source/WebCore/DerivedSources.pri

    r119367 r119490  
    683683else: preprocessIdls.commands = cat /dev/null > $$IDL_FILES_TMP $$EOC
    684684for(binding, IDL_BINDINGS) {
    685     preprocessIdls.commands += echo $$binding >> $$IDL_FILES_TMP $$EOC
     685    # We need "$$binding" instead of "$$binding ", because Windows' echo writes trailing whitespaces. (http://wkb.ug/88304)
     686    preprocessIdls.commands += echo $$binding>> $$IDL_FILES_TMP $$EOC
    686687}
    687688preprocessIdls.commands += perl -I$$PWD/bindings/scripts $$preprocessIdls.script \
Note: See TracChangeset for help on using the changeset viewer.