Bug 1890277: part 2) Add `require-trusted-types-for` directive to CSP parser, guarded...
[gecko.git] / nsprpub / admin / symlinks.sh
blob4b5071df98d8e49ec89d3ea7becbb9677aa86681
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
10 # syntax: symlinks.sh
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?
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.
22 # The symlinks in this script correspond to the NSPR 4.1.1
23 # release. Adjust as necessary.
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 WINNT4.0_DBG.OBJ WINNT5.0_DBG.OBJ
37 ln -s WINNT4.0_DBG.OBJD WINNT5.0_DBG.OBJD
38 ln -s WINNT4.0_OPT.OBJ WINNT5.0_OPT.OBJ
39 # --- end symlinks.sh ---------------------------------------------