diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-06-13 19:02:19 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-06-13 19:02:19 +0000 |
commit | 5f0653f9b6beecc44cc1502487f19781f2a5ba1d (patch) | |
tree | 6fe959bc65437b4ad90aebba23ecef66bf3e6ce7 | |
parent | f342d3d36fdea16725075c0b393de2ec9a7dc04b (diff) | |
download | rpmtools-5f0653f9b6beecc44cc1502487f19781f2a5ba1d.tar rpmtools-5f0653f9b6beecc44cc1502487f19781f2a5ba1d.tar.gz rpmtools-5f0653f9b6beecc44cc1502487f19781f2a5ba1d.tar.bz2 rpmtools-5f0653f9b6beecc44cc1502487f19781f2a5ba1d.tar.xz rpmtools-5f0653f9b6beecc44cc1502487f19781f2a5ba1d.zip |
no_comment
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | gendepslist2.cc | 2 | ||||
-rw-r--r-- | rpmtools.spec | 5 |
3 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2000-06-13 Pixel <pixel@mandrakesoft.com> + + * gendepslist2.cc: change fclose to pclose (thanks to diablero) + 2000-04-04 François Pons <fpons@mandrakesoft.com> * extract_archive: allow bad file in filelist, print error but continue. diff --git a/gendepslist2.cc b/gendepslist2.cc index aed37ae..f132dd2 100644 --- a/gendepslist2.cc +++ b/gendepslist2.cc @@ -382,7 +382,7 @@ void hdlists(void (*f)(FD_t, int), const char *file, int current_hdlist) { f(fdDup(fileno(pipe)), current_hdlist); - if (fclose(pipe) != 0) { + if (pclose(pipe) != 0) { cerr << "bad hdlist " << file << "\n"; exit(1); } diff --git a/rpmtools.spec b/rpmtools.spec index 9574531..33b65b1 100644 --- a/rpmtools.spec +++ b/rpmtools.spec @@ -1,5 +1,5 @@ %define name rpmtools -%define release 24mdk +%define release 25mdk # do not modify here, see Makefile in the CVS %define version 1.1 @@ -59,6 +59,9 @@ rm -rf $RPM_BUILD_ROOT /usr/bin/genfilelist %changelog +* Tue Jun 13 2000 Pixel <pixel@mandrakesoft.com> 1.1-25mdk +- fix a bug in gendepslist2 (thanks to diablero) + * Thu Jun 08 2000 François Pons <fpons@mandrakesoft.com> 1.1-24mdk - fixed bug in genhdlist_cz2 for multi arch management. |