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>
(cherry picked from commit 9bb0962d6e)
This commit is contained in:
Liangbin Lian 2020-08-14 14:19:12 +08:00
parent 59d39c09d8
commit b28c614d37

View file

@ -59,10 +59,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