Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 14652a1

Browse filesBrowse files
committed
Port regress-python3-mangle.mk to Solaris "sed".
It doesn't support "\(foo\)*" like a POSIX "sed" implementation does; see the Autoconf manual. Back-patch to 9.6 (all supported versions).
1 parent a6158a4 commit 14652a1
Copy full SHA for 14652a1

File tree

Expand file treeCollapse file tree

1 file changed

+4
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+4
-2
lines changed

‎src/pl/plpython/regress-python3-mangle.mk

Copy file name to clipboardExpand all lines: src/pl/plpython/regress-python3-mangle.mk
+4-2Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@ pgregress-python3-mangle:
2323
-e "s/def next/def __next__/g" \
2424
-e "s/LANGUAGE plpythonu/LANGUAGE plpython3u/g" \
2525
-e "s/LANGUAGE plpython2u/LANGUAGE plpython3u/g" \
26-
-e "s/EXTENSION \([^ ]*_\)*plpythonu/EXTENSION \1plpython3u/g" \
27-
-e "s/EXTENSION \([^ ]*_\)*plpython2u/EXTENSION \1plpython3u/g" \
26+
-e "s/EXTENSION plpythonu/EXTENSION plpython3u/g" \
27+
-e "s/EXTENSION plpython2u/EXTENSION plpython3u/g" \
28+
-e "s/EXTENSION \([^ ]*\)_plpythonu/EXTENSION \1_plpython3u/g" \
29+
-e "s/EXTENSION \([^ ]*\)_plpython2u/EXTENSION \1_plpython3u/g" \
2830
-e 's/installing required extension "plpython2u"/installing required extension "plpython3u"/g' \
2931
$$file >`echo $$file | sed 's,^.*/\([^/][^/]*/\)\([^/][^/]*\)$$,\1python3/\2,'` || exit; \
3032
done

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.