in reply to Re^3: Problems with forking
in thread Problems with forking
Thanks! This is mostly a remnant of the more complex scripts that actually implement the service.
They do something like this:
if(!$isCompiled && defined($ARGV[1]) && $ARGV[1] eq "--debug") { print("Development INC activated\n\n"); unshift @INC, "/home/cavac/src/maplat_prodit/lib"; unshift @INC, "/home/cavac/src/maplat_framework/lib"; $isDebugging = 1; } else { print("Development INC deactivated\n\n"); $isDebugging = 0; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Problems with forking
by Anonymous Monk on Apr 02, 2011 at 14:32 UTC |