From b715c3ad960d828a5b6657b01332ec1408a66b6a Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 17 Nov 1996 19:26:44 +0000 Subject: [PATCH] Change SLSUFF from .so to .o as default. --- src/Makefile.global | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile.global b/src/Makefile.global index 31b0d831686..92cc00abd7b 100644 --- a/src/Makefile.global +++ b/src/Makefile.global @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.68 1996/11/14 07:19:26 bryanh Exp $ +# $Header: /cvsroot/pgsql/src/Attic/Makefile.global,v 1.69 1996/11/17 19:26:44 momjian Exp $ # # NOTES # Essentially all Postgres make files include this file and use the @@ -305,7 +305,7 @@ endif # Shared libraries. # This is overridden for many PORTNAMEs below. -SLSUFF= .so +SLSUFF= .o #---------------------------------------------------------------------- ifeq ($(PORTNAME), BSD44_derived)