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