diff options
Diffstat (limited to 'autodeps/aix.prov')
-rw-r--r-- | autodeps/aix.prov | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autodeps/aix.prov b/autodeps/aix.prov index 2fab0d0ab..6f7c8bd52 100644 --- a/autodeps/aix.prov +++ b/autodeps/aix.prov @@ -59,7 +59,7 @@ find_prov_power() # Use the verbose version of dump to find the sharable objects while read f do - LANG=C /usr/bin/dump -ov $f/ 2>/dev/null | egrep "^Flags.*SHROBJ|:$" | + LANG=C /usr/bin/dump -ov $f/ 2>/dev/null | grep -E "^Flags.*SHROBJ|:$" | awk 'match($1,":$") { member=$1 } !match($1,":$") {print member} ' done | sed -e 's/:$//' -e 's/\/\[/\(/g' -e 's/\]/)/g' | xargs -i basename {} | |