mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-19 08:29:37 +00:00
Changes from 0.9: * Added patch to not install /usr/include/cblas.h, as it conflicts with sci-libs/lapack * aarch64 now builds/passes tests (in qemu), can be keyworded later Signed-off-by: Sv. Lockal <lockalsash@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/36974 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
13 lines
418 B
Diff
13 lines
418 B
Diff
Don't install one-line "helper header" cblas.h into /usr/include,
|
|
as it conflicts with sci-libs/lapack.
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -1052,7 +1052,7 @@ endif
|
|
|
|
# --- Install header rules ---
|
|
|
|
-install-headers: check-env $(MK_INCL_DIR_INST) install-helper-headers
|
|
+install-headers: check-env $(MK_INCL_DIR_INST)
|
|
|
|
# Rule for installing main headers.
|
|
$(MK_INCL_DIR_INST): $(HEADERS_TO_INSTALL) $(CONFIG_MK_FILE)
|