Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
postgresql-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PostgreSQL
postgresql-common
Commits
3a797404
Commit
3a797404
authored
6 years ago
by
Christoph Berg
📡
Browse files
Options
Downloads
Patches
Plain Diff
pg_buildext: Fix problem with substitution pattern occurring multiple times.
parent
e59d4ed9
Branches
nspawn
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
debian/changelog
+2
-0
2 additions, 0 deletions
debian/changelog
pg_buildext
+1
-1
1 addition, 1 deletion
pg_buildext
with
3 additions
and
1 deletion
debian/changelog
+
2
−
0
View file @
3a797404
postgresql-common (197) UNRELEASED; urgency=medium
* dh_make_pgxs: Update Maintainer address and package URLs.
* pg_buildext: Fix problem with substitution pattern occurring multiple
times.
-- Christoph Berg <christoph.berg@credativ.de> Wed, 21 Nov 2018 12:58:20 +0100
...
...
This diff is collapsed.
Click to expand it.
pg_buildext
+
1
−
1
View file @
3a797404
...
...
@@ -181,7 +181,7 @@ gencontrol() {
cp
debian/tests/control.in
$tmptestscontrol
# find words (package names) containing PGVERSION
REGEXP
=
'[[:alnum:]-]*PGVERSION[[:alnum:]-]*'
for
pkgpattern
in
$(
egrep
-wo
"
$REGEXP
"
debian/tests/control.in
)
;
do
for
pkgpattern
in
$(
egrep
-wo
"
$REGEXP
"
debian/tests/control.in
|
sort
-u
)
;
do
repl
=
""
# build an array of replacements separated by ,
for
v
in
$(
versions
)
;
do
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment