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
0dec669a
Commit
0dec669a
authored
Dec 08, 1999
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change $< to $+ in scripts Makefile, and clean up pg_encoding if logic.
parent
7cf0f634
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
19 additions
and
16 deletions
+19
-16
src/bin/Makefile
src/bin/Makefile
+2
-2
src/bin/initdb/Makefile
src/bin/initdb/Makefile
+2
-2
src/bin/initlocation/Makefile
src/bin/initlocation/Makefile
+2
-2
src/bin/ipcclean/Makefile
src/bin/ipcclean/Makefile
+2
-2
src/bin/pg_ctl/Makefile
src/bin/pg_ctl/Makefile
+2
-2
src/bin/scripts/Makefile
src/bin/scripts/Makefile
+2
-2
src/bin/scripts/createdb
src/bin/scripts/createdb
+7
-4
No files found.
src/bin/Makefile
View file @
0dec669a
...
...
@@ -7,14 +7,14 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.2
0 1999/12/05 20:02:43
momjian Exp $
# $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.2
1 1999/12/08 10:29:36
momjian Exp $
#
#-------------------------------------------------------------------------
SRCDIR
=
..
include
../Makefile.global
DIRS
=
pg_id pg_version psql pg_dump pg_passwd
cleardbdir
\
DIRS
=
pg_id pg_version psql pg_dump pg_passwd
\
scripts initdb initlocation ipcclean
ifdef
MULTIBYTE
...
...
src/bin/initdb/Makefile
View file @
0dec669a
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/initdb/Makefile,v 1.1
3 1999/05/20 16:50:05 wieck
Exp $
# $Header: /cvsroot/pgsql/src/bin/initdb/Makefile,v 1.1
4 1999/12/08 10:29:39 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -21,7 +21,7 @@ initdb: initdb.sh
initdb.sh
>
initdb
install
:
initdb
$(INSTALL)
$(INSTL_EXE_OPTS)
$
<
$(BINDIR)
/
$<
$(INSTALL)
$(INSTL_EXE_OPTS)
$
+
$(BINDIR)
clean
:
rm
-f
initdb
...
...
src/bin/initlocation/Makefile
View file @
0dec669a
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/Makefile,v 1.
7 1999/06/04 21:12:06 tgl
Exp $
# $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/Makefile,v 1.
8 1999/12/08 10:29:43 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -20,7 +20,7 @@ initlocation: initlocation.sh
cp
-p
initlocation.sh initlocation
install
:
initlocation
$(INSTALL)
$(INSTL_EXE_OPTS)
$
<
$(BINDIR)
/
$<
$(INSTALL)
$(INSTL_EXE_OPTS)
$
+
$(BINDIR)
clean
:
rm
-f
initlocation
...
...
src/bin/ipcclean/Makefile
View file @
0dec669a
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/ipcclean/Attic/Makefile,v 1.
8 1998/08/22 05:19:29
momjian Exp $
# $Header: /cvsroot/pgsql/src/bin/ipcclean/Attic/Makefile,v 1.
9 1999/12/08 10:29:46
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -23,7 +23,7 @@ ipcclean:
sed
$(SEDSCRIPT)
<ipcclean.sh
>
ipcclean
install
:
ipcclean
$(INSTALL)
$(INSTL_EXE_OPTS)
$
<
$(BINDIR)
/
$<
$(INSTALL)
$(INSTL_EXE_OPTS)
$
+
$(BINDIR)
clean
:
rm
-f
ipcclean
...
...
src/bin/pg_ctl/Makefile
View file @
0dec669a
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/pg_ctl/Makefile,v 1.
1 1999/12/06 07:23:41 ishii
Exp $
# $Header: /cvsroot/pgsql/src/bin/pg_ctl/Makefile,v 1.
2 1999/12/08 10:29:51 momjian
Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -20,7 +20,7 @@ pg_ctl: pg_ctl.sh
sed
-e
's@__BINDIR__@
$(BINDIR)
@'
pg_ctl.sh
>
pg_ctl
install
:
pg_ctl
$(INSTALL)
$(INSTL_EXE_OPTS)
$
<
$(BINDIR)
/
$<
$(INSTALL)
$(INSTL_EXE_OPTS)
$
+
$(BINDIR)
clean
:
rm
-f
pg_ctl
...
...
src/bin/scripts/Makefile
View file @
0dec669a
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/scripts/Makefile,v 1.
2 1999/12/05 20:02:48
momjian Exp $
# $Header: /cvsroot/pgsql/src/bin/scripts/Makefile,v 1.
3 1999/12/08 10:29:55
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -32,7 +32,7 @@ droplang:
vacuumdb
:
install
:
$(SCRIPTS)
$(INSTALL)
$(INSTL_EXE_OPTS)
$
<
$(BINDIR)
/
$(X)$<
$(INSTALL)
$(INSTL_EXE_OPTS)
$
+
$(BINDIR)
clean
:
rm
-f
createlang
...
...
src/bin/scripts/createdb
View file @
0dec669a
...
...
@@ -11,7 +11,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createdb,v 1.
2 1999/12/07 22:41:44
momjian Exp $
# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createdb,v 1.
3 1999/12/08 10:29:55
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -112,9 +112,12 @@ if [ "$usage" ]; then
fi
if
[
"
$MB
"
-a
-z
"
`
pg_encoding
'$MB'
`
"
]
;
then
echo
"
$CMDNAME
:
\"
$MB
\"
is not a valid encoding name."
exit
1
if
[
"
$MB
"
]
then if
[
-z
"
`
pg_encoding
'$MB'
`
"
]
then
echo
"
$CMDNAME
:
\"
$MB
\"
is not a valid encoding name."
exit
1
fi
fi
if
[
-z
"
$dbname
"
]
;
then
...
...
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