Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitd7b7a4a

Browse files
committed
This simple patch fixes a typo, ensure pg_config is removed in win32
and correct some splitted message mistake.Euler Taveira de Oliveira
1 parentdedb53f commitd7b7a4a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

‎src/bin/pg_config/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#-------------------------------------------------------------------------
22
#
3-
# Makefile for src/bin/pg_controldata
3+
# Makefile for src/bin/pg_config
44
#
55
# Copyright (c) 1998-2002, PostgreSQL Global Development Group
66
#
7-
# $PostgreSQL: pgsql/src/bin/pg_config/Makefile,v 1.10 2004/10/04 18:05:54 momjian Exp $
7+
# $PostgreSQL: pgsql/src/bin/pg_config/Makefile,v 1.11 2004/10/06 17:21:45 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

@@ -28,7 +28,7 @@ installdirs:
2828
$(mkinstalldirs)$(DESTDIR)$(bindir)
2929

3030
uninstall:
31-
rm -f$(DESTDIR)$(bindir)/pg_config
31+
rm -f$(DESTDIR)$(bindir)/pg_config$(X)
3232

3333
cleandistcleanmaintainer-clean:
3434
rm -f pg_config$(X)$(OBJS)

‎src/bin/pg_config/pg_config.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*
1818
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
1919
*
20-
* $PostgreSQL: pgsql/src/bin/pg_config/pg_config.c,v 1.6 2004/08/29 05:06:52 momjian Exp $
20+
* $PostgreSQL: pgsql/src/bin/pg_config/pg_config.c,v 1.7 2004/10/06 17:21:45 momjian Exp $
2121
*
2222
*-------------------------------------------------------------------------
2323
*/
@@ -38,14 +38,14 @@ help()
3838
printf(_(" %s OPTION...\n\n"),progname);
3939
printf(_("Options:\n"));
4040
printf(_(" --bindir show location of user executables\n"));
41-
printf(_(" --includedir show location of C header files of the client\n"));
42-
printf(_(" interfaces\n"));
41+
printf(_(" --includedir show location of C header files of the client\n"
42+
" interfaces\n"));
4343
printf(_(" --includedir-server show location of C header files for the server\n"));
4444
printf(_(" --libdir show location of object code libraries\n"));
4545
printf(_(" --pkglibdir show location of dynamically loadable modules\n"));
4646
printf(_(" --pgxs show location of extension makefile\n"));
47-
printf(_(" --configure show options given to 'configure' script when\n"));
48-
printf(_(" PostgreSQL was built\n"));
47+
printf(_(" --configure show options given to 'configure' script when\n"
48+
" PostgreSQL was built\n"));
4949
printf(_(" --version show the PostgreSQL version, then exit\n"));
5050
printf(_(" --help show this help, then exit\n\n"));
5151
printf(_("Report bugs to <pgsql-bugs@postgresql.org>.\n"));

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp