pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/waf



Module Name:    pkgsrc
Committed By:   wiz
Date:           Thu Apr  8 08:43:34 UTC 2021

Modified Files:
        pkgsrc/devel/waf: waf.mk

Log Message:
waf: add WAF_HAS_LIBDIR for really old wafs


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/devel/waf/waf.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/waf/waf.mk
diff -u pkgsrc/devel/waf/waf.mk:1.11 pkgsrc/devel/waf/waf.mk:1.12
--- pkgsrc/devel/waf/waf.mk:1.11        Thu Mar 26 15:14:04 2020
+++ pkgsrc/devel/waf/waf.mk     Thu Apr  8 08:43:34 2021
@@ -1,4 +1,4 @@
-# $NetBSD: waf.mk,v 1.11 2020/03/26 15:14:04 nia Exp $
+# $NetBSD: waf.mk,v 1.12 2021/04/08 08:43:34 wiz Exp $
 
 # XXX why does this does not respect the standard pkgsrc variables like
 # CONFIGURE_ENV et al?
@@ -26,7 +26,10 @@ WAF_HAS_MANDIR?=     yes
 WAF_ARGS+=             --mandir=${PREFIX}/${PKGMANDIR}
 .endif
 
+WAF_HAS_LIBDIR?=       yes
+.if !empty(WAF_HAS_LIBDIR:M[yY][eE][sS])
 WAF_ARGS+=             --libdir=${PREFIX}/lib
+.endif
 
 WAF_REPLACE_EXECUTABLE?=       no
 .if !empty(WAF_REPLACE_EXECUTABLE:M[yY][eE][sS])



Home | Main Index | Thread Index | Old Index