mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
d827bc9220
ar=edburns author=edburns, ashuk M Makefile.in M Makefile.win M webclient/classes_spec/Makefile.in M webclient/classes_spec/Makefile.win M webclient/src_moz/Makefile.win A build/Makefile.in A build/Makefile.win A build/install_blackconnect_unix.js A build/install_blackconnect_win32.js A build/install_blackwood_unix.js A build/install_blackwood_win32.js A build/install_dom_unix.js A build/install_dom_win32.js A build/install_pluglets_unix.js A build/install_pluglets_win32.js A build/install_webclient_unix.js A build/install_webclient_win32.js A build/symlink.sh
12 lines
248 B
Bash
12 lines
248 B
Bash
#!/bin/sh
|
|
|
|
#-------------------------------------------------------
|
|
# Hack to allow symlinking (required for Sun's JRE) in
|
|
# a zippy.
|
|
#
|
|
# usage: symlink.sh <srcfile> <newlink>
|
|
#
|
|
#-------------------------------------------------------
|
|
|
|
ln -s $1 $2
|