Merge pull request #13087 from jjm2473/lvm2-fix-mac-sh

lvm2: fix CE in mac
This commit is contained in:
Rosen Penev 2020-08-13 23:43:18 -07:00 committed by GitHub
commit a1776371cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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