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
68c019a5
Commit
68c019a5
authored
Aug 26, 2011
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add another pgdefine path check, and a cvs-git change.
parent
e7088713
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
src/tools/make_mkid
src/tools/make_mkid
+1
-1
src/tools/pginclude/pgcompinclude
src/tools/pginclude/pgcompinclude
+5
-0
src/tools/pginclude/pgrminclude
src/tools/pginclude/pgrminclude
+0
-2
No files found.
src/tools/make_mkid
View file @
68c019a5
...
...
@@ -5,7 +5,7 @@
mkid
`
find
\`
pwd
\`
/
\(
-name
_deadcode
-a
-prune
\)
-o
\
-type
f
-name
'*.[chyl]'
-print
|sed
's;//;/;g'
`
find
.
-name
'CVS'
-prune
-o
-type
d
-print
|while
read
DIR
find
.
\(
-name
.git
-a
-prune
\)
-o
-type
d
-print
|while
read
DIR
do
[
"
$DIR
"
!=
"."
]
&&
ln
-f
-s
`
echo
"
$DIR
"
|
sed
's;/[^/]*;/..;g'
`
/ID
$DIR
/ID
done
src/tools/pginclude/pgcompinclude
View file @
68c019a5
...
...
@@ -3,6 +3,11 @@
# takes -v option to display compile failure message and line numbers
# src/tools/pginclude/pgcompinclude
if ! pgdefine
then echo "pgdefine must be in your PATH" 1>&2
exit 1
fi
trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a" 0 1 2 3 15
find . \( -name .git -a -prune \) -o -name '*.h' -type f -print | while read FILE
do
...
...
src/tools/pginclude/pgrminclude
View file @
68c019a5
...
...
@@ -6,8 +6,6 @@ then echo "pgdefine must be in your PATH" 1>&2
exit 1
fi
# src/tools/pginclude/pgrminclude
trap "rm -f /tmp/$$.c /tmp/$$.o /tmp/$$ /tmp/$$a /tmp/$$b" 0 1 2 3 15
# do include files first
(find . \( -name .git -a -prune \) -o -type f -name '*.h' -print;
...
...
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