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
b6d45222
Commit
b6d45222
authored
Oct 08, 2012
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove generation of repl_gram.h
It was apparently never necessary.
parent
26fe5648
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
5 deletions
+1
-5
src/backend/Makefile
src/backend/Makefile
+0
-1
src/backend/replication/.gitignore
src/backend/replication/.gitignore
+0
-1
src/backend/replication/Makefile
src/backend/replication/Makefile
+1
-3
No files found.
src/backend/Makefile
View file @
b6d45222
...
...
@@ -311,7 +311,6 @@ maintainer-clean: distclean
catalog/postgres.description
\
catalog/postgres.shdescription
\
replication/repl_gram.c
\
replication/repl_gram.h
\
replication/repl_scanner.c
\
utils/fmgroids.h
\
utils/fmgrtab.c
\
...
...
src/backend/replication/.gitignore
View file @
b6d45222
/repl_gram.c
/repl_gram.h
/repl_scanner.c
src/backend/replication/Makefile
View file @
b6d45222
...
...
@@ -22,11 +22,9 @@ include $(top_srcdir)/src/backend/common.mk
# repl_scanner is compiled as part of repl_gram
repl_gram.o
:
repl_scanner.c
# See notes in src/backend/parser/Makefile about the following two rules
repl_gram.c
:
repl_gram.y
ifdef
BISON
$(BISON)
-d
$(BISONFLAGS)
-o
$@
$<
$(BISON)
$(BISONFLAGS)
-o
$@
$<
else
@
$(missing)
bison
$<
$@
endif
...
...
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