Changes to produce proper XPI on GNU/Linux

git-svn-id: svn://10.0.0.236/trunk@135787 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
edburns%acm.org
2003-01-02 20:37:53 +00:00
parent e59ea54e7a
commit 10769a25c7
5 changed files with 48 additions and 20 deletions

View File

@@ -118,12 +118,16 @@ if ($SEP eq "/") {
#tack on the java library path
$cmd = $cmd . " -Djava.library.path=" . $BINDIR . $CPSEP . $BINDIR . $SEP . "components";
#tack on the debug arguments
if ($IS_UNIX) {
$cmd = $cmd . " -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n";
$cmd = $cmd . $CPSEP . $ENV{"LD_LIBRARY_PATH"};
}
else {
if ($ENV{"MOZ_DEBUG"}) {
#tack on the debug arguments
if ($ENV{"MOZ_DEBUG"}) {
if ($IS_UNIX) {
$cmd = $cmd . " -Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n";
}
else {
$cmd = $cmd . " -Xdebug -Xrunjdwp:transport=dt_shmem,address=jdbconn,server=y,suspend=n";
}
}