Skip to content

Commit 78f6986

Browse files
committed
Rename pg-config to pg_config to be consistent with other pg commands.
1 parent 4d76a80 commit 78f6986

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

doc/src/sgml/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99
#
1010
# IDENTIFICATION
11-
# $Header: /cvsroot/pgsql/doc/src/sgml/Makefile,v 1.22 2000/10/05 19:48:16 momjian Exp $
11+
# $Header: /cvsroot/pgsql/doc/src/sgml/Makefile,v 1.23 2000/10/10 22:01:50 momjian Exp $
1212
#
1313
#----------------------------------------------------------------------------
1414

@@ -78,7 +78,7 @@ APPLICATIONS= createdb.sgml createlang.sgml createuser.sgml \
7878
pg_upgrade.sgml \
7979
pgaccess-ref.sgml \
8080
pgadmin-ref.sgml \
81-
pg-config-ref.sgml \
81+
pg_config-ref.sgml \
8282
pg_ctl-ref.sgml \
8383
pgtclsh.sgml \
8484
pgtksh.sgml \

doc/src/sgml/ref/allfiles.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/allfiles.sgml,v 1.22 2000/10/05 19:48:17 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/allfiles.sgml,v 1.23 2000/10/10 22:01:51 momjian Exp $
33
Postgres documentation
44
Complete list of usable sgml source files in this directory.
55
-->
@@ -120,7 +120,7 @@ Complete list of usable sgml source files in this directory.
120120
<!entity ipcclean system "ipcclean.sgml">
121121
<!entity pgAccess system "pgaccess-ref.sgml">
122122
<!entity pgAdmin system "pgadmin-ref.sgml">
123-
<!entity pgConfig system "pg-config-ref.sgml">
123+
<!entity pgConfig system "pg_config-ref.sgml">
124124
<!entity pgCtl system "pg_ctl-ref.sgml">
125125
<!entity pgDump system "pg_dump.sgml">
126126
<!entity pgDumpall system "pg_dumpall.sgml">

src/bin/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Copyright (c) 1994, Regents of the University of California
66
#
7-
# $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.32 2000/09/25 22:22:54 petere Exp $
7+
# $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.33 2000/10/10 22:01:52 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -13,7 +13,7 @@ top_builddir = ../..
1313
include $(top_builddir)/src/Makefile.global
1414

1515
DIRS := initdb initlocation ipcclean pg_ctl pg_dump pg_id \
16-
pg_passwd psql scripts pg-config
16+
pg_passwd psql scripts pg_config
1717

1818
ifdef MULTIBYTE
1919
DIRS += pg_encoding
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# $Header: /cvsroot/pgsql/src/bin/pg-config/Attic/Makefile,v 1.3 2000/09/17 13:02:34 petere Exp $
1+
# $Header: /cvsroot/pgsql/src/bin/pg_config/Makefile,v 1.1 2000/10/10 22:01:55 momjian Exp $
22

3-
subdir = src/bin/pg-config
3+
subdir = src/bin/pg_config
44
top_builddir = ../../..
55
include $(top_builddir)/src/Makefile.global
66

7-
all: pg-config
7+
all: pg_config
88

9-
pg-config: pg-config.sh $(top_builddir)/config.status $(top_builddir)/src/Makefile.global Makefile
9+
pg_config: pg_config.sh $(top_builddir)/config.status $(top_builddir)/src/Makefile.global Makefile
1010
configure=`sed -n '7s,^# [^ ]*configure *,,p' $(top_builddir)/config.status` && \
1111
sed -e 's,@bindir@,$(bindir),g' \
1212
-e 's,@includedir@,$(includedir),g' \
@@ -17,13 +17,13 @@ pg-config: pg-config.sh $(top_builddir)/config.status $(top_builddir)/src/Makefi
1717
chmod a+x $@
1818

1919
install: all installdirs
20-
$(INSTALL_SCRIPT) pg-config $(DESTDIR)$(bindir)/pg-config
20+
$(INSTALL_SCRIPT) pg_config $(DESTDIR)$(bindir)/pg_config
2121

2222
installdirs:
2323
$(mkinstalldirs) $(DESTDIR)$(bindir)
2424

2525
uninstall:
26-
rm -f $(DESTDIR)$(bindir)/pg-config
26+
rm -f $(DESTDIR)$(bindir)/pg_config
2727

2828
clean distclean maintainer-clean:
29-
rm -f pg-config
29+
rm -f pg_config

src/bin/pg-config/pg-config.sh renamed to src/bin/pg_config/pg_config.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Author: Peter Eisentraut <peter_e@gmx.net>
88
# Public domain
99

10-
# $Header: /cvsroot/pgsql/src/bin/pg-config/Attic/pg-config.sh,v 1.1 2000/08/26 13:08:16 petere Exp $
10+
# $Header: /cvsroot/pgsql/src/bin/pg_config/Attic/pg_config.sh,v 1.1 2000/10/10 22:01:55 momjian Exp $
1111

1212
me=`basename $0`
1313

@@ -67,4 +67,4 @@ do
6767
eval "echo $thing"
6868
done
6969

70-
# end of pg-config
70+
# end of pg_config

0 commit comments

Comments
 (0)