From 62a60d8716b7306cf29fa14298dd3c0263d81b07 Mon Sep 17 00:00:00 2001 From: Panu Matilainen Date: Thu, 25 Feb 2010 15:16:39 +0200 Subject: [PATCH] Gah, stupid thinko in elfdeps - for DSO's without a soname, we should be adding a *provide* of the basename, not require - dumb regression from commit 87c237bebfc792a8b439fa2c5a2b78328b139d50 --- tools/elfdeps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/elfdeps.c b/tools/elfdeps.c index 218fd0a..f9595ef 100644 --- a/tools/elfdeps.c +++ b/tools/elfdeps.c @@ -244,7 +244,7 @@ static int processFile(const char *fn, int dtype) char *dep; bn = bn ? bn + 1 : fn; dep = rstrscat(NULL, bn, marker, NULL); - argvAdd(&ei->requires, dep); + argvAdd(&ei->provides, dep); rfree(dep); } -- 2.7.4