summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--urpm.pm5
-rw-r--r--urpmi.spec5
2 files changed, 6 insertions, 4 deletions
diff --git a/urpm.pm b/urpm.pm
index 9c848216..8ad3c2e1 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -1258,9 +1258,8 @@ sub get_source_packages {
#- we have found one source for id.
push @local_sources, "$urpm->{cachedir}/rpms/$1-$2-$3.$4.rpm";
} else {
- -d "$urpm->{cachedir}/rpms/$_" and next;
- $error = 1;
- $urpm->{error}("unable to determine rpms cache directory $urpm->{cachedir}/rpms");
+ #- syncing on this directory cause newer .listing file to appears...
+ next;
}
}
closedir D;
diff --git a/urpmi.spec b/urpmi.spec
index b2694b9f..42af95cb 100644
--- a/urpmi.spec
+++ b/urpmi.spec
@@ -2,7 +2,7 @@
Name: urpmi
Version: 1.5
-Release: 30mdk
+Release: 31mdk
License: GPL
Source0: %{name}.tar.bz2
Summary: User mode rpm install
@@ -114,6 +114,9 @@ autoirpm.uninstall
%changelog
+* Tue Apr 10 2001 François Pons <fpons@mandrakesoft.com> 1.5-31mdk
+- fixed error on .listing file in rpms cache directory.
+
* Tue Apr 10 2001 François Pons <fpons@mandrakesoft.com> 1.5-30mdk
- fixed header clean-up.
- updated man pages.