aboutsummaryrefslogtreecommitdiffstats
path: root/Mk
diff options
context:
space:
mode:
authordinoex <dinoex@FreeBSD.org>2003-08-31 11:28:27 +0800
committerdinoex <dinoex@FreeBSD.org>2003-08-31 11:28:27 +0800
commit38ca5d622e7bcdbecef5769ee2ff94e92889d3c6 (patch)
tree02d25b0b7404447fd899cfcaf817d08a0de6754b /Mk
parent7821bc864c6dc3b6dc275ff58e09fce3e07cc2bd (diff)
downloadfreebsd-ports-gnome-38ca5d622e7bcdbecef5769ee2ff94e92889d3c6.tar.gz
freebsd-ports-gnome-38ca5d622e7bcdbecef5769ee2ff94e92889d3c6.tar.zst
freebsd-ports-gnome-38ca5d622e7bcdbecef5769ee2ff94e92889d3c6.zip
- drop !empty(LDFLAGS)
LDFLAGS might me defined with a variable that gets set later
Diffstat (limited to 'Mk')
-rw-r--r--Mk/bsd.openssl.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.openssl.mk b/Mk/bsd.openssl.mk
index 6ff2e1912e1b..9b548e8a9bc0 100644
--- a/Mk/bsd.openssl.mk
+++ b/Mk/bsd.openssl.mk
@@ -2,7 +2,7 @@
# Date created: 31 May 2002
# Whom: dinoex
#
-# $FreeBSD: /tmp/pcvs/ports/Mk/bsd.openssl.mk,v 1.7 2003-08-30 07:26:04 dinoex Exp $
+# $FreeBSD: /tmp/pcvs/ports/Mk/bsd.openssl.mk,v 1.8 2003-08-31 03:28:27 dinoex Exp $
#
# this substitutes USE_OPENSSL=yes
# just include this makefile after bsd.ports.pre.mk
@@ -123,7 +123,7 @@ CFLAGS+= -Wl,-rpath,${OPENSSLRPATH}
.endif
OPENSSL_LDFLAGS+= -rpath=${OPENSSLRPATH}
-.if defined(LDFLAGS) && !empty(LDFLAGS)
+.if defined(LDFLAGS)
LDFLAGS+=${OPENSSL_LDFLAGS}
.else
LDFLAGS=${OPENSSL_LDFLAGS}