diff options
author | Logan Gunthorpe <logang@deltatee.com> | 2022-06-22 22:25:06 +0200 |
---|---|---|
committer | Jes Sorensen <jes@trained-monkey.org> | 2022-08-07 22:27:59 +0200 |
commit | 14ae4c37bce9a53da08d59d6c2d7e0946e9c9f47 (patch) | |
tree | 76c81a6029d32c67fc031c4b631dd7d6540d598f /Makefile | |
parent | Monitor: use snprintf to fill device name (diff) | |
download | mdadm-14ae4c37bce9a53da08d59d6c2d7e0946e9c9f47.tar.xz mdadm-14ae4c37bce9a53da08d59d6c2d7e0946e9c9f47.zip |
Makefile: Don't build static build with everything and everything-test
Running the test suite requires building everything, but it seems to be
difficult to build the static version of mdadm now seeing there
is no readily available static udev library.
The test suite doesn't need the static binary so just don't build it
with the everything or everything-test targets.
Leave the mdadm.static and install-static targets in place in case
someone still has a use case for the static binary.
Signed-off-by: Logan Gunthorpe <logang@deltatee.com>
Acked-by: Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com>
Signed-off-by: Jes Sorensen <jes@trained-monkey.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -182,9 +182,9 @@ check_rundir: echo "***** or set CHECK_RUN_DIR=0"; exit 1; \ fi -everything: all mdadm.static swap_super test_stripe raid6check \ +everything: all swap_super test_stripe raid6check \ mdadm.Os mdadm.O2 man -everything-test: all mdadm.static swap_super test_stripe \ +everything-test: all swap_super test_stripe \ mdadm.Os mdadm.O2 man # mdadm.uclibc doesn't work on x86-64 # mdadm.tcc doesn't work.. |