pkgsrc-Changes archive

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

CVS commit: pkgsrc/pkgtools/pkg



Module Name:    pkgsrc
Committed By:   vins
Date:           Mon Dec 19 16:49:59 UTC 2022

Modified Files:
        pkgsrc/pkgtools/pkg: Makefile

Log Message:
pkgtools/pkg: only require libbsd on Linux.

To date, we don't know of any platform but Linux where libbsd compiles
fine.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 pkgsrc/pkgtools/pkg/Makefile

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

Modified files:

Index: pkgsrc/pkgtools/pkg/Makefile
diff -u pkgsrc/pkgtools/pkg/Makefile:1.29 pkgsrc/pkgtools/pkg/Makefile:1.30
--- pkgsrc/pkgtools/pkg/Makefile:1.29   Fri May 14 12:05:38 2021
+++ pkgsrc/pkgtools/pkg/Makefile        Mon Dec 19 16:49:59 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.29 2021/05/14 12:05:38 nia Exp $
+# $NetBSD: Makefile,v 1.30 2022/12/19 16:49:59 vins Exp $
 
 DISTNAME=      pkg-1.10.99.7
 CATEGORIES=    pkgtools
@@ -147,7 +147,9 @@ BUILDLINK_TRANSFORM+=       rm:-Wl,--enable-ne
 
 .if ${OPSYS} != "FreeBSD" && ${OPSYS} != "DragonFly" && ${OPSYS} != "NetBSD"
 .include "../../archivers/libarchive/buildlink3.mk"
-.include "../../devel/libbsd/buildlink3.mk"
+.  if ${OPSYS} == "Linux"
+.    include "../../devel/libbsd/buildlink3.mk"
+.  endif
 .endif
 .include "../../mk/pthread.buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index