pkgsrc-Changes archive

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

CVS commit: pkgsrc/net/gupnp



Module Name:    pkgsrc
Committed By:   tnn
Date:           Sat Sep 29 17:37:49 UTC 2018

Modified Files:
        pkgsrc/net/gupnp: buildlink3.mk

Log Message:
Take care to not install dummy uuid.pc if it exists in the buildlink dir.
Doing so overwrites uuid.pc that belongs to libuuid through the symlink.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 pkgsrc/net/gupnp/buildlink3.mk

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

Modified files:

Index: pkgsrc/net/gupnp/buildlink3.mk
diff -u pkgsrc/net/gupnp/buildlink3.mk:1.36 pkgsrc/net/gupnp/buildlink3.mk:1.37
--- pkgsrc/net/gupnp/buildlink3.mk:1.36 Fri Jul 20 03:33:53 2018
+++ pkgsrc/net/gupnp/buildlink3.mk      Sat Sep 29 17:37:49 2018
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.36 2018/07/20 03:33:53 ryoon Exp $
+# $NetBSD: buildlink3.mk,v 1.37 2018/09/29 17:37:49 tnn Exp $
 
 BUILDLINK_TREE+=       gupnp
 
@@ -12,7 +12,7 @@ BUILDLINK_PKGSRCDIR.gupnp?=   ../../net/gu
 .include "../../mk/bsd.fast.prefs.mk"
 .if (!empty(OPSYS:M*BSD) || ${OPSYS} == "DragonFly" || ${OPSYS} == "Darwin") && (!defined(USE_INTERNAL_UUID) || empty(USE_INTERNAL_UUID:M[Yy][Ee][Ss]))
 pre-configure:
-       cp ${BUILDLINK_PKGSRCDIR.gupnp}/files/uuid.pc ${BUILDLINK_DIR}/lib/pkgconfig/
+       if ! test -e ${BUILDLINK_DIR}/lib/pkgconfig/uuid.pc; then cp ${BUILDLINK_PKGSRCDIR.gupnp}/files/uuid.pc ${BUILDLINK_DIR}/lib/pkgconfig/uuid.pc; fi
 .else
 .include "../../devel/libuuid/buildlink3.mk"
 .endif



Home | Main Index | Thread Index | Old Index