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
3393551d
Commit
3393551d
authored
May 13, 2010
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix vpath installation from distribution tarball (bug #5447)
parent
463f151a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
doc/src/sgml/Makefile
doc/src/sgml/Makefile
+1
-3
src/Makefile.global.in
src/Makefile.global.in
+3
-1
src/backend/catalog/Makefile
src/backend/catalog/Makefile
+4
-4
No files found.
doc/src/sgml/Makefile
View file @
3393551d
...
...
@@ -2,7 +2,7 @@
#
# PostgreSQL documentation makefile
#
# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.14
2 2010/05/01 21:31:17 tgl
Exp $
# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.14
3 2010/05/13 11:49:47 petere
Exp $
#
#----------------------------------------------------------------------------
...
...
@@ -277,8 +277,6 @@ check: postgres.sgml $(ALMOSTALLSGML) check-tabs
## Install
##
vpathsearch
=
`
for
f
in
$(
addsuffix
/
$(1)
,
$(
subst
:, ,.
$(VPATH)
))
;
do
test
-r
$$
f
&&
echo
$$
f
&&
break
;
done
`
install
:
install-html
ifneq
($(PORTNAME), sco)
...
...
src/Makefile.global.in
View file @
3393551d
# -*-makefile-*-
# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.26
1 2010/03/24 13:14:02 adunstan
Exp $
# $PostgreSQL: pgsql/src/Makefile.global.in,v 1.26
2 2010/05/13 11:49:47 petere
Exp $
#------------------------------------------------------------------------------
# All PostgreSQL makefiles include this file and use the variables it sets,
...
...
@@ -44,6 +44,8 @@ srcdir = $(top_srcdir)/$(subdir)
VPATH
=
$(srcdir)
endif
vpathsearch
=
`
for
f
in
$(
addsuffix
/
$(1)
,
$(
subst
:, ,.
$(VPATH)
))
;
do
test
-r
$$
f
&&
echo
$$
f
&&
break
;
done
`
# Saved arguments from configure
configure_args
=
@configure_args@
...
...
src/backend/catalog/Makefile
View file @
3393551d
...
...
@@ -2,7 +2,7 @@
#
# Makefile for backend/catalog
#
# $PostgreSQL: pgsql/src/backend/catalog/Makefile,v 1.7
7 2010/02/16 22:34:43 tgl
Exp $
# $PostgreSQL: pgsql/src/backend/catalog/Makefile,v 1.7
8 2010/05/13 11:49:48 petere
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -59,9 +59,9 @@ postgres.bki: genbki.pl Catalog.pm $(POSTGRES_BKI_SRCS)
.PHONY
:
install-data
install-data
:
$(BKIFILES) installdirs
$(INSTALL_DATA)
postgres.bki
'
$(DESTDIR)$(datadir)
/postgres.bki'
$(INSTALL_DATA)
postgres.description
'
$(DESTDIR)$(datadir)
/postgres.description'
$(INSTALL_DATA)
postgres.shdescription
'
$(DESTDIR)$(datadir)
/postgres.shdescription'
$(INSTALL_DATA)
$(
call
vpathsearch,postgres.bki
)
'
$(DESTDIR)$(datadir)
/postgres.bki'
$(INSTALL_DATA)
$(
call
vpathsearch,postgres.description
)
'
$(DESTDIR)$(datadir)
/postgres.description'
$(INSTALL_DATA)
$(
call
vpathsearch,postgres.shdescription
)
'
$(DESTDIR)$(datadir)
/postgres.shdescription'
$(INSTALL_DATA)
$(srcdir)
/system_views.sql
'
$(DESTDIR)$(datadir)
/system_views.sql'
$(INSTALL_DATA)
$(srcdir)
/information_schema.sql
'
$(DESTDIR)$(datadir)
/information_schema.sql'
$(INSTALL_DATA)
$(srcdir)
/sql_features.txt
'
$(DESTDIR)$(datadir)
/sql_features.txt'
...
...
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