Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 670788 | Differences between
and this patch

Collapse All | Expand All

(-)a/eclass/meson.eclass (-3 / +4 lines)
Lines 244-255 meson_src_configure() { Link Here
244
}
244
}
245
245
246
# @FUNCTION: meson_src_compile
246
# @FUNCTION: meson_src_compile
247
# @USAGE: [extra ninja arguments]
247
# @DESCRIPTION:
248
# @DESCRIPTION:
248
# This is the meson_src_compile function.
249
# This is the meson_src_compile function.
249
meson_src_compile() {
250
meson_src_compile() {
250
	debug-print-function ${FUNCNAME} "$@"
251
	debug-print-function ${FUNCNAME} "$@"
251
252
252
	eninja -C "${BUILD_DIR}"
253
	eninja -C "${BUILD_DIR}" "$@"
253
}
254
}
254
255
255
# @FUNCTION: meson_src_test
256
# @FUNCTION: meson_src_test
Lines 276-287 meson_src_test() { Link Here
276
}
277
}
277
278
278
# @FUNCTION: meson_src_install
279
# @FUNCTION: meson_src_install
280
# @USAGE: [extra ninja install arguments]
279
# @DESCRIPTION:
281
# @DESCRIPTION:
280
# This is the meson_src_install function.
282
# This is the meson_src_install function.
281
meson_src_install() {
283
meson_src_install() {
282
	debug-print-function ${FUNCNAME} "$@"
284
	debug-print-function ${FUNCNAME} "$@"
283
285
284
	DESTDIR="${D}" eninja -C "${BUILD_DIR}" install
286
	DESTDIR="${D}" eninja -C "${BUILD_DIR}" install "$@"
285
	einstalldocs
287
	einstalldocs
286
}
288
}
287
289
288
- 

Return to bug 670788