sutpid fix for #7190. create default plugins directory in the executable directory causes the code that goes searching for 3.0 and 4.0 plugins to not be called. this will prevent java crashes and also speed up launch time.

This commit is contained in:
cyeh%netscape.com 1999-07-02 01:07:55 +00:00
parent bdbd71b410
commit 7ac3d65300

View File

@ -644,7 +644,11 @@ sub BuildDist()
# we really do not need all these paths, but many client projects include them
mkpath([ ":mozilla:dist:", ":mozilla:dist:client:", ":mozilla:dist:client_debug:", ":mozilla:dist:client_stubs:" ]);
mkpath([ ":mozilla:dist:viewer:", ":mozilla:dist:viewer_debug:" ]);
#make default plugins folder so that apprunner won't go looking for 3.0 and 4.0 plugins.
mkpath([ ":mozilla:dist:viewer:plugins", ":mozilla:dist:viewer_debug:plugins"]);
mkpath([ ":mozilla:dist:client:plugins", ":mozilla:dist:client_debug:plugins"]);
if ($main::MOZ_FULLCIRCLE)
{
mkpath([ $dist_dir."TalkBack"]);