diff options
author | agc <agc@pkgsrc.org> | 1998-11-16 21:13:01 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 1998-11-16 21:13:01 +0000 |
commit | 19f1ecf3316fdfa1c4d88645083ac5b306d68271 (patch) | |
tree | a30d82a1a22fc79c49bf39e1b2af675d05476094 /databases/postgresql/Makefile | |
parent | 8b82f626ae61ac881a794cf49646492330da8ed7 (diff) | |
download | pkgsrc-19f1ecf3316fdfa1c4d88645083ac5b306d68271.tar.gz |
Use ${OPSYS}, rather than calling `uname -s` again.
Diffstat (limited to 'databases/postgresql/Makefile')
-rw-r--r-- | databases/postgresql/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/postgresql/Makefile b/databases/postgresql/Makefile index 5c17ea40f2b..e25d09573aa 100644 --- a/databases/postgresql/Makefile +++ b/databases/postgresql/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 1998/11/12 16:24:39 agc Exp $ +# $NetBSD: Makefile,v 1.20 1998/11/16 21:13:01 agc Exp $ # FreeBSD Id: Makefile,v 1.22 1997/12/24 01:21:37 alex Exp DISTNAME= postgresql-6.3.2 @@ -33,7 +33,7 @@ CONFIGURE_ARGS= --prefix=${PREFIX}/${PGUSER} \ --with-tcl \ --with-includes=${PREFIX}/include \ --with-libs=${PREFIX}/lib \ - --with-template=`uname -s | ${TR} '[A-Z]' '[a-z]'` + --with-template=`${ECHO} ${OPSYS} | ${TR} '[A-Z]' '[a-z]'` .include "../../mk/bsd.prefs.mk" |