nsprpub/admin/symlinks.sh

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 #!/bin/sh
     2 # 
     3 # This Source Code Form is subject to the terms of the Mozilla Public
     4 # License, v. 2.0. If a copy of the MPL was not distributed with this
     5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
     7 # -----------------------------------------------------------------
     8 # symlinks.sh -- create links from NSPR builds
     9 #
    10 # syntax: symlinks.sh
    11 # 
    12 # Description:
    13 # symlinks.sh creates some symbolic links for NSPR build targets
    14 # that are not actually build, but for which there are NSPR
    15 # binaries suitable for running on the intended target. ... got
    16 # that?
    17 # 
    18 # Suggested use: After copying NSPR binaries to
    19 # /s/b/c/nspr20/<platform> run symlinks.sh to create the links
    20 # for all supported platforms.
    21 #
    22 # The symlinks in this script correspond to the NSPR 4.1.1
    23 # release. Adjust as necessary.
    24 #
    25 # -----------------------------------------------------------------
    27 ln -s SunOS5.6_DBG.OBJ SunOS5.7_DBG.OBJ
    28 ln -s SunOS5.6_OPT.OBJ SunOS5.7_OPT.OBJ
    30 ln -s SunOS5.6_DBG.OBJ SunOS5.8_DBG.OBJ
    31 ln -s SunOS5.6_OPT.OBJ SunOS5.8_OPT.OBJ
    33 ln -s SunOS5.7_64_DBG.OBJ SunOS5.8_64_DBG.OBJ
    34 ln -s SunOS5.7_64_OPT.OBJ SunOS5.8_64_OPT.OBJ
    36 ln -s OSF1V4.0D_DBG.OBJ OSF1V5.0_DBG.OBJ
    37 ln -s OSF1V4.0D_OPT.OBJ OSF1V5.0_OPT.OBJ
    39 ln -s WINNT4.0_DBG.OBJ WINNT5.0_DBG.OBJ
    40 ln -s WINNT4.0_DBG.OBJD WINNT5.0_DBG.OBJD
    41 ln -s WINNT4.0_OPT.OBJ WINNT5.0_OPT.OBJ
    42 # --- end symlinks.sh ---------------------------------------------

mercurial