diff options
author | Liangbin Lian <jjm2473@gmail.com> | 2020-08-14 14:19:12 +0800 |
---|---|---|
committer | Liangbin Lian <jjm2473@gmail.com> | 2020-08-14 14:19:12 +0800 |
commit | 9bb0962d6e3a2d5faf28a9624da82a936d961f19 (patch) | |
tree | 9a3dd7f852282c02a61452b11b000ec3bb34910f /utils | |
parent | d8d06cfca262d97c7d3a3481c6a0f2cd3803c250 (diff) |
lvm2: fix CE in mac
command-count.h generated by makefile was wrong
when using default shell in mac,
set shell to bash to fix it.
Signed-off-by: Liangbin Lian <jjm2473@gmail.com>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/lvm2/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/lvm2/Makefile b/utils/lvm2/Makefile index 2ecbab790..23824c37f 100644 --- a/utils/lvm2/Makefile +++ b/utils/lvm2/Makefile @@ -61,10 +61,15 @@ CONFIGURE_ARGS += \ --with-default-run-dir=/var/run/lvm \ --with-default-locking-dir=/var/lock/lvm +ifneq ($(shell /bin/sh -c "echo -n 'X'"),X) +MAKE_SHELL = SHELL=/bin/bash +endif + define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ CFLAGS="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS) $(FPIC)" \ DESTDIR="$(PKG_INSTALL_DIR)" \ + $(MAKE_SHELL) \ install endef |