File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed
Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ postgres_major:
99
1010# Full version strings for each major version
1111postgres_release :
12- postgresorioledb-17 : " 17.5.1.018-orioledb-rc-2 "
13- postgres17 : " 17.4.1.075-rc-2 "
14- postgres15 : " 15.8.1.132-rc-2 "
12+ postgresorioledb-17 : " 17.5.1.018-orioledb-rc-1 "
13+ postgres17 : " 17.4.1.075-rc-1 "
14+ postgres15 : " 15.8.1.132-rc-1 "
1515
1616# Non Postgres Extensions
1717pgbouncer_release : " 1.19.0"
Original file line number Diff line number Diff line change @@ -162,11 +162,10 @@ let
162162 # Install upgrade scripts
163163 find . -name '${ pname } --*--*.sql' -exec install -Dm644 {} $out/share/postgresql/extension/ \;
164164
165- # Create versioned control file with module_pathname
166- {
167- sed "/^default_version =/d" ${ pname } .control
168- echo "module_pathname = '\$libdir/${ pname } '"
169- } > $out/share/postgresql/extension/${ pname } --${ version } .control
165+ # Create versioned control file with modified module path
166+ sed -e "/^default_version =/d" \
167+ -e "s|^module_pathname = .*|module_pathname = '\$libdir/${ pname } '|" \
168+ ${ pname } .control > $out/share/postgresql/extension/${ pname } --${ version } .control
170169 '' ;
171170
172171 meta = with lib ; {
You can’t perform that action at this time.
0 commit comments