diff options
| author | Brian Dolbec <dolsen@gentoo.org> | 2014-02-18 09:16:16 -0800 |
|---|---|---|
| committer | Brian Dolbec <dolsen@gentoo.org> | 2014-02-18 09:16:16 -0800 |
| commit | 6a1b982db786de23bd8a201827be4b3b34c53a75 (patch) | |
| tree | 614538f1ef71c9a9f455ed8fa2cc2516949d1fc0 /pym | |
| parent | f47a75c4815415aa4da6a4b41fb2ba18ef753ef2 (diff) | |
| download | gentoolkit-6a1b982db786de23bd8a201827be4b3b34c53a75.tar.gz | |
Revert "revdep-rebuild/analyse.py: Change the scanelf call parameters."
This reverts commit f47a75c4815415aa4da6a4b41fb2ba18ef753ef2.
I added the parameter incorrectly, then didn't notice the that
no info was returned.
When I add the --use-ldpath correctly, it seems to detect that
nearly everything is broken.
Diffstat (limited to 'pym')
| -rw-r--r-- | pym/gentoolkit/revdep_rebuild/analyse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/gentoolkit/revdep_rebuild/analyse.py b/pym/gentoolkit/revdep_rebuild/analyse.py index 595d4f5..0c22b0e 100644 --- a/pym/gentoolkit/revdep_rebuild/analyse.py +++ b/pym/gentoolkit/revdep_rebuild/analyse.py @@ -30,7 +30,7 @@ def scan_files(libs_and_bins, cmd_max_args, logger): ''' stime = current_milli_time() scanned_files = {} # {bits: {soname: (filename, needed), ...}, ...} - lines = scan(['--use-ldpath -BF', '%F %f %S %n %M'], + lines = scan(['-nBF', '%F %f %S %n %M'], libs_and_bins, cmd_max_args, logger) ftime = current_milli_time() logger.debug("\tscan_files(); total time to get scanelf data is " |
