Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
746330e2
Commit
746330e2
authored
Nov 30, 2006
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better solution to the tr problem: use sed instead. Per Martijn and Andrew.
parent
7ac9d45f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
config/general.m4
config/general.m4
+2
-2
configure
configure
+1
-1
No files found.
config/general.m4
View file @
746330e2
# $PostgreSQL: pgsql/config/general.m4,v 1.
8 2006/11/30 21:44:12
tgl Exp $
# $PostgreSQL: pgsql/config/general.m4,v 1.
9 2006/11/30 22:21:23
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 'a_b' 'a-b
'`
pgac_txt=`echo $pgac_var |
sed 's/_/-/g
'`
AC_MSG_WARN([option ignored: --$pgac_txt])
done])# PGAC_ARG_CHECK
...
...
configure
View file @
746330e2
...
...
@@ -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
'a_b'
'a-b
'
`
pgac_txt
=
`
echo
$pgac_var
|
sed
's/_/-/g
'
`
{
echo
"
$as_me
:
$LINENO
: WARNING: option ignored: --
$pgac_txt
"
>
&5
echo
"
$as_me
: WARNING: option ignored: --
$pgac_txt
"
>
&2
;
}
done
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment