1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/nsprpub/admin/symlinks.sh Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,43 @@ 1.4 +#!/bin/sh 1.5 +# 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 + 1.10 +# ----------------------------------------------------------------- 1.11 +# symlinks.sh -- create links from NSPR builds 1.12 +# 1.13 +# syntax: symlinks.sh 1.14 +# 1.15 +# Description: 1.16 +# symlinks.sh creates some symbolic links for NSPR build targets 1.17 +# that are not actually build, but for which there are NSPR 1.18 +# binaries suitable for running on the intended target. ... got 1.19 +# that? 1.20 +# 1.21 +# Suggested use: After copying NSPR binaries to 1.22 +# /s/b/c/nspr20/<platform> run symlinks.sh to create the links 1.23 +# for all supported platforms. 1.24 +# 1.25 +# The symlinks in this script correspond to the NSPR 4.1.1 1.26 +# release. Adjust as necessary. 1.27 +# 1.28 +# ----------------------------------------------------------------- 1.29 + 1.30 +ln -s SunOS5.6_DBG.OBJ SunOS5.7_DBG.OBJ 1.31 +ln -s SunOS5.6_OPT.OBJ SunOS5.7_OPT.OBJ 1.32 + 1.33 +ln -s SunOS5.6_DBG.OBJ SunOS5.8_DBG.OBJ 1.34 +ln -s SunOS5.6_OPT.OBJ SunOS5.8_OPT.OBJ 1.35 + 1.36 +ln -s SunOS5.7_64_DBG.OBJ SunOS5.8_64_DBG.OBJ 1.37 +ln -s SunOS5.7_64_OPT.OBJ SunOS5.8_64_OPT.OBJ 1.38 + 1.39 +ln -s OSF1V4.0D_DBG.OBJ OSF1V5.0_DBG.OBJ 1.40 +ln -s OSF1V4.0D_OPT.OBJ OSF1V5.0_OPT.OBJ 1.41 + 1.42 +ln -s WINNT4.0_DBG.OBJ WINNT5.0_DBG.OBJ 1.43 +ln -s WINNT4.0_DBG.OBJD WINNT5.0_DBG.OBJD 1.44 +ln -s WINNT4.0_OPT.OBJ WINNT5.0_OPT.OBJ 1.45 +# --- end symlinks.sh --------------------------------------------- 1.46 +