Browse Source

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>
lilik-openwrt-22.03
Liangbin Lian 4 years ago
parent
commit
9bb0962d6e
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      utils/lvm2/Makefile

+ 5
- 0
utils/lvm2/Makefile 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


Loading…
Cancel
Save