diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-04-09 16:38:33 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2004-04-09 16:38:33 +0000 |
commit | 1a808d2955976028a97e24eb87c99dd4638e8a00 (patch) | |
tree | 288bc2488f0f9c222e500acb74ea6c3e2fccb9b7 /urpm.pm | |
parent | f6cc4e96147ba98f746da13e02a70962e659a74e (diff) | |
download | urpmi-1a808d2955976028a97e24eb87c99dd4638e8a00.tar urpmi-1a808d2955976028a97e24eb87c99dd4638e8a00.tar.gz urpmi-1a808d2955976028a97e24eb87c99dd4638e8a00.tar.bz2 urpmi-1a808d2955976028a97e24eb87c99dd4638e8a00.tar.xz urpmi-1a808d2955976028a97e24eb87c99dd4638e8a00.zip |
Factorize command-line handling for urpm* tools in a separate module.
Use this in urpmi.
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3097,7 +3097,7 @@ sub install { local (*CHILD_RETURNS, *ERROR_OUTPUT, $_); if ($options{fork}) { pipe(CHILD_RETURNS, ERROR_OUTPUT); - defined($pid = fork()) or die "Can't fork: $!\n" + defined($pid = fork()) or die "Can't fork: $!\n"; if ($pid) { # parent process close ERROR_OUTPUT; |