diff options
| -rw-r--r-- | meta/recipes-core/util-linux/util-linux.inc | 1 | ||||
| -rw-r--r-- | meta/recipes-core/util-linux/util-linux/Automake-use-EXTRA_LTLIBRARIES-instead-of-noinst_LTL.patch | 49 |
2 files changed, 50 insertions, 0 deletions
diff --git a/meta/recipes-core/util-linux/util-linux.inc b/meta/recipes-core/util-linux/util-linux.inc index b4f817ed82..4031c586c9 100644 --- a/meta/recipes-core/util-linux/util-linux.inc +++ b/meta/recipes-core/util-linux/util-linux.inc | |||
| @@ -37,5 +37,6 @@ SRC_URI = "${KERNELORG_MIRROR}/linux/utils/${BPN}/v${MAJOR_VERSION}/${BP}.tar.xz | |||
| 37 | file://run-ptest \ | 37 | file://run-ptest \ |
| 38 | file://display_testname_for_subtest.patch \ | 38 | file://display_testname_for_subtest.patch \ |
| 39 | file://avoid_parallel_tests.patch \ | 39 | file://avoid_parallel_tests.patch \ |
| 40 | file://Automake-use-EXTRA_LTLIBRARIES-instead-of-noinst_LTL.patch \ | ||
| 40 | " | 41 | " |
| 41 | SRC_URI[sha256sum] = "f7516ba9d8689343594356f0e5e1a5f0da34adfbc89023437735872bb5024c5f" | 42 | SRC_URI[sha256sum] = "f7516ba9d8689343594356f0e5e1a5f0da34adfbc89023437735872bb5024c5f" |
diff --git a/meta/recipes-core/util-linux/util-linux/Automake-use-EXTRA_LTLIBRARIES-instead-of-noinst_LTL.patch b/meta/recipes-core/util-linux/util-linux/Automake-use-EXTRA_LTLIBRARIES-instead-of-noinst_LTL.patch new file mode 100644 index 0000000000..272518914e --- /dev/null +++ b/meta/recipes-core/util-linux/util-linux/Automake-use-EXTRA_LTLIBRARIES-instead-of-noinst_LTL.patch | |||
| @@ -0,0 +1,49 @@ | |||
| 1 | Author: Luca Boccassi <luca.boccassi@microsoft.com> | ||
| 2 | Description: Automake: use EXTRA_LTLIBRARIES instead of noinst_LTLIBRARIES | ||
| 3 | noinst_LTLIBRARIES causes the libraries to be always built | ||
| 4 | unconditionally. EXTRA_LTLIBRARIES causes them to be built | ||
| 5 | only if other build target needs them. | ||
| 6 | In other words, avoid building libcommon.a and libtcolors.a | ||
| 7 | unless they are needed by another library/executable and | ||
| 8 | save some build time. | ||
| 9 | Upstream-Status: backport, commit:c65953d72bbc7412f32e566d9fa6e780d84f0696 | ||
| 10 | --- a/Makefile.am | ||
| 11 | +++ b/Makefile.am | ||
| 12 | @@ -39,7 +39,7 @@ bashcompletiondir = @bashcompletiondir@ | ||
| 13 | |||
| 14 | dist_noinst_HEADERS = | ||
| 15 | noinst_PROGRAMS = | ||
| 16 | -noinst_LTLIBRARIES = | ||
| 17 | +EXTRA_LTLIBRARIES = | ||
| 18 | usrbin_exec_PROGRAMS = | ||
| 19 | usrsbin_exec_PROGRAMS = | ||
| 20 | dist_man_MANS = | ||
| 21 | @@ -169,7 +169,7 @@ else | ||
| 22 | edit_cmd += -e 's|@vendordir[@]||g' | ||
| 23 | endif | ||
| 24 | |||
| 25 | -CLEANFILES += $(PATHFILES) | ||
| 26 | +CLEANFILES += $(PATHFILES) $(EXTRA_LTLIBRARIES) | ||
| 27 | EXTRA_DIST += $(PATHFILES:=.in) | ||
| 28 | |||
| 29 | $(PATHFILES): Makefile | ||
| 30 | --- a/lib/Makemodule.am | ||
| 31 | +++ b/lib/Makemodule.am | ||
| 32 | @@ -9,7 +9,7 @@ | ||
| 33 | # Note that you need "make install-strip" (or proper rpm / Debian build) | ||
| 34 | # to generate binaries with only relevant stuff. | ||
| 35 | # | ||
| 36 | -noinst_LTLIBRARIES += libcommon.la | ||
| 37 | +EXTRA_LTLIBRARIES += libcommon.la | ||
| 38 | libcommon_la_CFLAGS = $(AM_CFLAGS) | ||
| 39 | libcommon_la_SOURCES = \ | ||
| 40 | lib/blkdev.c \ | ||
| 41 | @@ -59,7 +59,7 @@ libcommon_la_SOURCES += lib/sysfs.c | ||
| 42 | endif | ||
| 43 | endif | ||
| 44 | |||
| 45 | -noinst_LTLIBRARIES += libtcolors.la | ||
| 46 | +EXTRA_LTLIBRARIES += libtcolors.la | ||
| 47 | libtcolors_la_CFLAGS = $(AM_CFLAGS) | ||
| 48 | libtcolors_la_SOURCES = lib/colors.c lib/color-names.c include/colors.h include/color-names.h | ||
| 49 | libtcolors_la_LIBADD = | ||
