pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/meson



Module Name:    pkgsrc
Committed By:   nia
Date:           Thu Apr  8 12:54:14 UTC 2021

Modified Files:
        pkgsrc/devel/meson: build.mk

Log Message:
meson: set libexecdir as a precaution

possibly different on some linux distributions as seen in #pkgsrc


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/devel/meson/build.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/meson/build.mk
diff -u pkgsrc/devel/meson/build.mk:1.7 pkgsrc/devel/meson/build.mk:1.8
--- pkgsrc/devel/meson/build.mk:1.7     Fri Mar 12 08:39:10 2021
+++ pkgsrc/devel/meson/build.mk Thu Apr  8 12:54:14 2021
@@ -1,4 +1,4 @@
-# $NetBSD: build.mk,v 1.7 2021/03/12 08:39:10 nia Exp $
+# $NetBSD: build.mk,v 1.8 2021/04/08 12:54:14 nia Exp $
 
 BUILD_DEPENDS+=        meson-[0-9]*:../../devel/meson
 
@@ -22,8 +22,12 @@ do-configure: meson-configure
 meson-configure:
 .for d in ${CONFIGURE_DIRS}
        cd ${WRKSRC} && cd ${d} && ${SETENV} ${MAKE_ENV} meson \
-               --prefix ${PREFIX} --libdir lib --mandir ${PKGMANDIR} \
-               --sysconfdir ${PKG_SYSCONFDIR} --buildtype=plain ${MESON_ARGS} . output
+               --prefix ${PREFIX} \
+               --libdir lib \
+               --libexecdir libexec \
+               --mandir ${PKGMANDIR} \
+               --sysconfdir ${PKG_SYSCONFDIR} \
+               --buildtype=plain ${MESON_ARGS} . output
 .endfor
 
 do-build: meson-build



Home | Main Index | Thread Index | Old Index