summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlocaldebpool6
1 files changed, 3 insertions, 3 deletions
diff --git a/localdebpool b/localdebpool
index 28b7d42..01bbc5f 100755
--- a/localdebpool
+++ b/localdebpool
@@ -26,7 +26,7 @@ compactlist() {
}
regexfromlist() {
- echo $@ | sed 's/[[:space:]]\+/\\|/g; s/^/\\(/; s/$/\\)/'
+ echo $@ | sed 's/[[:space:]]\+/\\|/g; s/^/(/; s/$/)/'
}
sectionsfromhintstream() {
@@ -181,7 +181,7 @@ esac
# $PRVBASE/$buildhost/pool-$pool/$package/
#
batchsections="$( \
- find "$PRVBASE" -type f -regex '.*/'"$pkg_re"'/HINTS' -exec cat '{}' ';' \
+ find "$PRVBASE" -type f -regextype egrep -regex '.*/'"$pkg_re"'/HINTS' -exec cat '{}' ';' \
| sectionsfromhintstream
)"
batchsections="$(compactlist $batchsections)"
@@ -207,7 +207,7 @@ fi
# $PRVBASE/sections/$section/$dist/$section/$package/$pool/$buildhost
# $PUBBASE/pkg/$package/$pool/$buildhost
#
-cd "$PRVBASE" && find * -type f -name HINTS -exec grep -q "^Sections:.*$batchsections_re" '{}' ';' -printf '%h\n' \
+cd "$PRVBASE" && find * -type f -name HINTS -exec grep -Pq "^Sections:.*$batchsections_re" '{}' ';' -printf '%h\n' \
| while read prvpkgdir; do
debugprint "prvpkgdir: \"$prvpkgdir\""
set -- $(pkginfofromprvpkgdir "$prvpkgdir")