File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ postgres_major:
9
9
10
10
# Full version strings for each major version
11
11
postgres_release :
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 "
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 "
15
15
16
16
# Non Postgres Extensions
17
17
pgbouncer_release : " 1.19.0"
Original file line number Diff line number Diff line change @@ -162,10 +162,11 @@ let
162
162
# Install upgrade scripts
163
163
find . -name '${ pname } --*--*.sql' -exec install -Dm644 {} $out/share/postgresql/extension/ \;
164
164
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
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
169
170
'' ;
170
171
171
172
meta = with lib ; {
You can’t perform that action at this time.
0 commit comments