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
f4add185
Commit
f4add185
authored
Aug 29, 1999
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix quoting problems in mkMakefile.tcldefs.sh.in and
mkMakefile.tkdefs.sh.in.
parent
1f14a9de
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
11 deletions
+30
-11
src/bin/pgtclsh/mkMakefile.tcldefs.sh.in
src/bin/pgtclsh/mkMakefile.tcldefs.sh.in
+11
-4
src/bin/pgtclsh/mkMakefile.tkdefs.sh.in
src/bin/pgtclsh/mkMakefile.tkdefs.sh.in
+9
-4
src/pl/tcl/mkMakefile.tcldefs.sh.in
src/pl/tcl/mkMakefile.tcldefs.sh.in
+10
-3
No files found.
src/bin/pgtclsh/mkMakefile.tcldefs.sh.in
View file @
f4add185
#! /bin/sh
if [ ! -
f
@TCL_CONFIG_SH@ ]; then
if
[
!
-
r
@TCL_CONFIG_SH@
]
;
then
echo
"@TCL_CONFIG_SH@ not found"
echo
"@TCL_CONFIG_SH@ not found"
echo
"I need this file! Please make a symbolic link to this file"
echo
"I need this file! Please make a symbolic link to this file"
echo
"and start make again."
echo
"and start make again."
exit
1
exit
1
fi
fi
# Source the file to obtain the correctly expanded variable definitions
.
@TCL_CONFIG_SH@
# Read the file a second time as an easy way of getting the list of variable
# definitions to output.
cat
@TCL_CONFIG_SH@ |
cat
@TCL_CONFIG_SH@ |
egrep '^TCL_' |
egrep
'^TCL_|^TK_'
|
while read inp
sed
's/^\([^=]*\)=.*$/\1/'
|
while
read
var
do
do
eval eval echo $inp
eval echo
"
\"
$var
=
\$
$var
\"
"
done
>
Makefile.tcldefs
done
>
Makefile.tcldefs
exit
0
exit
0
src/bin/pgtclsh/mkMakefile.tkdefs.sh.in
View file @
f4add185
#! /bin/sh
if [ ! -
f
@TK_CONFIG_SH@ ]; then
if
[
!
-
r
@TK_CONFIG_SH@
]
;
then
echo
"@TK_CONFIG_SH@ not found"
echo
"@TK_CONFIG_SH@ not found"
echo
"I need this file! Please make a symbolic link to this file"
echo
"I need this file! Please make a symbolic link to this file"
echo
"and start make again."
echo
"and start make again."
exit
1
exit
1
fi
fi
# Source the file to obtain the correctly expanded variable definitions
.
@TK_CONFIG_SH@
.
@TK_CONFIG_SH@
# Read the file a second time as an easy way of getting the list of variable
# definitions to output.
cat
@TK_CONFIG_SH@ |
cat
@TK_CONFIG_SH@ |
egrep '^TK_' |
egrep
'^TCL_|^TK_'
|
while read inp
sed
's/^\([^=]*\)=.*$/\1/'
|
while
read
var
do
do
eval eval echo $inp
eval echo
"
\"
$var
=
\$
$var
\"
"
done
>
Makefile.tkdefs
done
>
Makefile.tkdefs
exit
0
exit
0
src/pl/tcl/mkMakefile.tcldefs.sh.in
View file @
f4add185
#! /bin/sh
if [ ! -
f
@TCL_CONFIG_SH@ ]; then
if
[
!
-
r
@TCL_CONFIG_SH@
]
;
then
echo
"@TCL_CONFIG_SH@ not found"
echo
"@TCL_CONFIG_SH@ not found"
echo
"I need this file! Please make a symbolic link to this file"
echo
"I need this file! Please make a symbolic link to this file"
echo
"and start make again."
echo
"and start make again."
exit
1
exit
1
fi
fi
# Source the file to obtain the correctly expanded variable definitions
.
@TCL_CONFIG_SH@
# Read the file a second time as an easy way of getting the list of variable
# definitions to output.
cat
@TCL_CONFIG_SH@ |
cat
@TCL_CONFIG_SH@ |
egrep
'^TCL_|^TK_'
|
egrep
'^TCL_|^TK_'
|
while read inp
sed
's/^\([^=]*\)=.*$/\1/'
|
while
read
var
do
do
eval eval echo $inp
eval echo
"
\"
$var
=
\$
$var
\"
"
done
>
Makefile.tcldefs
done
>
Makefile.tcldefs
exit
0
exit
0
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