summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-08-19 19:36:01 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-08-19 19:36:01 +0000
commit359258e1be1a1918aeecd4e7245ac4e50b5e483c (patch)
tree6f553d85aea555b2d1ee52f86b6b8ee93594f6e0 /src
parent871f10e0283db5b00c77b60de1596c8e186199f1 (diff)
BSD44_derived required -ltermcap as well...
Diffstat (limited to 'src')
-rw-r--r--src/bin/psql/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bin/psql/Makefile b/src/bin/psql/Makefile
index 97f0d15aaa7..9f1d2208eb6 100644
--- a/src/bin/psql/Makefile
+++ b/src/bin/psql/Makefile
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.4.2.1 1996/08/19 19:32:58 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/bin/psql/Makefile,v 1.4.2.2 1996/08/19 19:36:01 scrappy Exp $
#
#-------------------------------------------------------------------------
@@ -51,6 +51,10 @@ ifeq ($(USE_READLINE), true)
else
ifeq ($(PORTNAME), bsdi_2_1)
LD_ADD += -ltermcap
+ else
+ ifeq ($(PORTNAME), BSD44_derived)
+ LD_ADD += -ltermcap
+ endif
endif
endif
endif