Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9dab728

Browse files
committed
Update to pgaccess 0.98.
1 parent 987026c commit 9dab728

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

src/Makefile.global.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.58 1999/09/09 19:39:00 momjian Exp $
10+
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.59 1999/10/31 19:50:46 momjian Exp $
1111
#
1212
# NOTES
1313
# Essentially all Postgres make files include this file and use the
@@ -145,6 +145,7 @@ endif
145145
#
146146
USE_TCL= @USE_TCL@
147147
USE_TK= @USE_TK@
148+
WISH= @wish@
148149

149150
USE_PERL= @USE_PERL@
150151
PERL=perl

src/bin/pgaccess/Makefile.in renamed to src/bin/pgaccess/Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Copyright (c) 1994, Regents of the University of California
77
#
88
# IDENTIFICATION
9-
# $Header: /cvsroot/pgsql/src/bin/pgaccess/Attic/Makefile.in,v 1.2 1999/10/31 12:23:41 momjian Exp $
9+
# $Header: /cvsroot/pgsql/src/bin/pgaccess/Attic/Makefile,v 1.7 1999/10/31 19:50:47 momjian Exp $
1010
#
1111
#-------------------------------------------------------------------------
1212

@@ -16,7 +16,7 @@ include $(SRCDIR)/Makefile.global
1616
all: pgaccess
1717

1818
pgaccess: pgaccess.sh
19-
sed -e 's;__wish__;@wish@;' pgaccess.sh | \
19+
sed -e 's;__wish__;$(WISH);' pgaccess.sh | \
2020
sed -e 's;__POSTGRESDIR__;$(POSTGRESDIR);' \
2121
> pgaccess
2222

@@ -30,6 +30,8 @@ install:
3030
$(INSTALL) $(INSTLOPTS) lib/help/*.hlp $(POSTGRESDIR)/pgaccess/lib/help
3131
@if [ ! -d $(POSTGRESDIR)/pgaccess/lib/languages ]; then mkdir $(POSTGRESDIR)/pgaccess/lib/languages; fi
3232
$(INSTALL) $(INSTLOPTS) lib/languages/[a-z]* $(POSTGRESDIR)/pgaccess/lib/languages
33+
@if [ ! -d $(POSTGRESDIR)/pgaccess/images ]; then mkdir $(POSTGRESDIR)/pgaccess/images; fi
34+
$(INSTALL) $(INSTLOPTS) images/*.gif $(POSTGRESDIR)/pgaccess/images
3335

3436
clean:
3537
rm -f pgaccess

src/configure.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1214,7 +1214,6 @@ AC_OUTPUT(
12141214
backend/utils/Gen_fmgrtab.sh
12151215
bin/pg_dump/Makefile
12161216
bin/pg_version/Makefile
1217-
bin/pgaccess/Makefile
12181217
bin/pgtclsh/mkMakefile.tcldefs.sh
12191218
bin/pgtclsh/mkMakefile.tkdefs.sh
12201219
bin/psql/Makefile

0 commit comments

Comments
 (0)