summaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
authorBruce Momjian1998-12-18 17:53:22 +0000
committerBruce Momjian1998-12-18 17:53:22 +0000
commit3d39ea7341bfa1cae5baf9956cb1692c2d267e9d (patch)
tree1441b59fde24826340e590d0ee4322627bed7f6c /src/bin
parentb8d5f02e4e83cece64e932899bbb96709c2113ea (diff)
Here are descriptions:
- the first patch is just to preven listing the perl warning in the make output unless it is actually emitted by the make. this may prevent new users from being confused by the warning in their output - the second patch (to 2 files) just enables building/installing pgaccess if TCL and TK are available. a Makefile is created to do this, but you may wish to change the heading information in it since I just copied another Makefile to use as a template. I hope these make it into 6.4.1. Cheers, Brook
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/bin/Makefile b/src/bin/Makefile
index 585c0aaf56d..e8fad4374dd 100644
--- a/src/bin/Makefile
+++ b/src/bin/Makefile
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.16 1998/11/14 01:56:36 thomas Exp $
+# $Header: /cvsroot/pgsql/src/bin/Makefile,v 1.17 1998/12/18 17:53:21 momjian Exp $
#
#-------------------------------------------------------------------------
@@ -25,6 +25,9 @@ endif
# TCL/TK programs
#
ifeq ($(USE_TCL), true)
+ifeq ($(USE_TK), true)
+ DIRS += pgaccess
+endif
DIRS += pgtclsh
endif