diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-08-22 16:15:47 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-08-22 16:15:47 +0000 |
commit | 16d7837cdcd2fd847e8876f6d7cd3373645d645a (patch) | |
tree | 47fa481ce54a401f8c90894189e47bd815106450 /perl-install/c | |
parent | f3f2542c2c99cf5466be141dd29fbcca5bf49499 (diff) | |
download | drakx-16d7837cdcd2fd847e8876f6d7cd3373645d645a.tar drakx-16d7837cdcd2fd847e8876f6d7cd3373645d645a.tar.gz drakx-16d7837cdcd2fd847e8876f6d7cd3373645d645a.tar.bz2 drakx-16d7837cdcd2fd847e8876f6d7cd3373645d645a.tar.xz drakx-16d7837cdcd2fd847e8876f6d7cd3373645d645a.zip |
do init_db inside pkg_inside otherwise LOG is closed and rpmlib tries to write in it and ...
Diffstat (limited to 'perl-install/c')
-rw-r--r-- | perl-install/c/stuff.xs.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/perl-install/c/stuff.xs.pm b/perl-install/c/stuff.xs.pm index a34824b1f..23d12a0ca 100644 --- a/perl-install/c/stuff.xs.pm +++ b/perl-install/c/stuff.xs.pm @@ -74,7 +74,6 @@ int rpmError_callback_data; void rpmError_callback(void) { if (rpmErrorCode() != RPMERR_UNLINK && rpmErrorCode() != RPMERR_RMDIR) { write(rpmError_callback_data, rpmErrorString(), strlen(rpmErrorString())); - write(rpmError_callback_data, "\n", 1); } } |