Show
Ignore:
Timestamp:
02/29/08 19:32:35 (2 years ago)
Author:
rob.linden
Message:

Latest internal snapshot
Last Changed Rev: 80909
Last Changed Date: 2008-02-27 15:08:55 -0800 (Wed, 27 Feb 2008)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/llmozlib2/copy_products_linux.sh

    r1 r8  
    1 #!/bin/sh 
     1#!/bin/bash 
    22 
    33# This script copies the relevant headers from the mozilla tree to the llmozlib  
     
    1212export LIBRARIES_DEST="." 
    1313 
    14 export ARCH=i686-linux 
     14export ARCH=`uname -m`-linux 
    1515 
    1616# make sure the destination directories exist.  If they don't, the user running the script probably hasn't set them up properly. 
     
    2727SRC="$MOZ_OBJDIR" 
    2828DST="$LIBRARIES_DEST/libraries/$ARCH" 
    29 for dir in /include/webbrwsr/ /include/docshell/ /include/dom/ /include/xpcom/ /include/widget/ /include/gfx/ /include/string/ /include/uriloader/ /include/view/ /include/layout/ /include/content/ /include/locale/ /include/profdirserviceprovider/ /include/xulapp/ /include/pref/ /include/necko/ /include/nkcache/ /sdk/include/ ; do 
     29for dir in /include/webbrwsr/ /include/docshell/ /include/dom/ /include/xpcom/ /include/widget/ /include/gfx/ /include/string/ /include/uriloader/ /include/view/ /include/layout/ /include/content/ /include/locale/ /include/profdirserviceprovider/ /include/xulapp/ /include/pref/ /include/necko/ /include/nkcache/ /include/js/ /include/appshell/ /sdk/include/ ; do 
    3030        mkdir -p $DST/include/mozilla/${dir} 
    3131        cp -LR $SRC/dist/${dir}/* $DST/include/mozilla/${dir}