diff options
Diffstat (limited to 'pbuilder-satisfydepends-classic')
-rwxr-xr-x | pbuilder-satisfydepends-classic | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pbuilder-satisfydepends-classic b/pbuilder-satisfydepends-classic index 280ae80..899f5f2 100755 --- a/pbuilder-satisfydepends-classic +++ b/pbuilder-satisfydepends-classic @@ -31,7 +31,7 @@ export PBUILDER_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder # first as to iterate on deps with "for"; e.g. "foo, bar | baz", "foobar (>= # 2)" becomes "foo", "bar/|/baz", "foobar/(>=/2)" split_deps() { - tr " " "/" | awk 'BEGIN{RS=","} {print}' + sed 's#, *#\n#g; s# #/#g' } # and build-conflicts |