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/. 6 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# ----------------------------------------------------------------- 26 27ln -s SunOS5.6_DBG.OBJ SunOS5.7_DBG.OBJ 28ln -s SunOS5.6_OPT.OBJ SunOS5.7_OPT.OBJ 29 30ln -s SunOS5.6_DBG.OBJ SunOS5.8_DBG.OBJ 31ln -s SunOS5.6_OPT.OBJ SunOS5.8_OPT.OBJ 32 33ln -s SunOS5.7_64_DBG.OBJ SunOS5.8_64_DBG.OBJ 34ln -s SunOS5.7_64_OPT.OBJ SunOS5.8_64_OPT.OBJ 35 36ln -s OSF1V4.0D_DBG.OBJ OSF1V5.0_DBG.OBJ 37ln -s OSF1V4.0D_OPT.OBJ OSF1V5.0_OPT.OBJ 38 39ln -s WINNT4.0_DBG.OBJ WINNT5.0_DBG.OBJ 40ln -s WINNT4.0_DBG.OBJD WINNT5.0_DBG.OBJD 41ln -s WINNT4.0_OPT.OBJ WINNT5.0_OPT.OBJ 42# --- end symlinks.sh --------------------------------------------- 43 44