Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
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
Jakob Huber
postgres-lambda-diff
Commits
7ac9d45f
Commit
7ac9d45f
authored
18 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Improve portability of 'tr' invocation in PGAC_ARG_CHECK. Reported by
Olivier Prenant, fixed by Peter.
parent
cd99debb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
config/general.m4
+2
-2
2 additions, 2 deletions
config/general.m4
configure
+1
-1
1 addition, 1 deletion
configure
with
3 additions
and
3 deletions
config/general.m4
+
2
−
2
View file @
7ac9d45f
# $PostgreSQL: pgsql/config/general.m4,v 1.
7
2006/1
0
/30 2
2:15:04 petere
Exp $
# $PostgreSQL: pgsql/config/general.m4,v 1.
8
2006/1
1
/30 2
1:44:12 tgl
Exp $
# This file defines new macros to process configure command line
# arguments, to replace the brain-dead AC_ARG_WITH and AC_ARG_ENABLE.
...
...
@@ -82,7 +82,7 @@ AC_DEFUN([PGAC_ARG_CHECK],
continue 2
fi
done
pgac_txt=`echo $pgac_var | tr '
_' '-
'`
pgac_txt=`echo $pgac_var | tr '
a_b' 'a-b
'`
AC_MSG_WARN([option ignored: --$pgac_txt])
done])# PGAC_ARG_CHECK
...
...
This diff is collapsed.
Click to expand it.
configure
+
1
−
1
View file @
7ac9d45f
...
...
@@ -24413,7 +24413,7 @@ for pgac_var in `set | sed 's/=.*//' | $EGREP 'with_|enable_'`; do
continue 2
fi
done
pgac_txt=`echo $pgac_var | tr '
_' '-
'`
pgac_txt=`echo $pgac_var | tr '
a_b' 'a-b
'`
{ echo "$as_me:$LINENO: WARNING: option ignored: --$pgac_txt" >&5
echo "$as_me: WARNING: option ignored: --$pgac_txt" >&2;}
done
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