Changeset 85308 in webkit


Ignore:
Timestamp:
Apr 29, 2011 12:07:59 AM (13 years ago)
Author:
Stephanie Lewis
Message:

http://bugs.webkit.org/show_bug.cgi?id=59743
<rdar://problem/9040413> Add an install target for production builds.

Reviewed by Mark Rowe.

  • DumpRenderTree/mac/PerlSupport/Makefile:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r85307 r85308  
     12011-04-28  Stephanie Lewis  <slewis@apple.com>
     2
     3        Reviewed by Mark Rowe.
     4
     5        http://bugs.webkit.org/show_bug.cgi?id=59743
     6        <rdar://problem/9040413> Add an install target for production builds.
     7
     8        * DumpRenderTree/mac/PerlSupport/Makefile:
     9
    1102011-04-28  Adam Roben  <aroben@apple.com>
    211
  • trunk/Tools/DumpRenderTree/mac/PerlSupport/Makefile

    r81046 r85308  
    7272        rm -f $(WRAPPER) $(PERL_MODULE) $(DYLIB)
    7373
    74 installhdrs installsrc install:
     74installhdrs installsrc:
     75
     76ifeq "$(CONFIGURATION)" "Production"
     77
     78INSTALL_LOCATION=$(DSTROOT)/$(SYSTEM_LIBRARY_DIR)/Frameworks/$(WEBKIT_FRAMEWORK_RESOURCES_PATH)
     79
     80install: all
     81        mkdir -p $(INSTALL_LOCATION)
     82        cp $(DYLIB) $(INSTALL_LOCATION)/DumpRenderTreeSupport.dylib
     83        cp $(PERL_MODULE) $(INSTALL_LOCATION)/DumpRenderTreeSupport.pm
     84
     85else
     86
     87install:
     88
     89endif
Note: See TracChangeset for help on using the changeset viewer.