mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-01 15:37:44 +00:00
vim: use $(MAKE) instead of hardcoding make
This commit is contained in:
parent
daf30631d8
commit
4c9b747b95
@ -70,13 +70,13 @@ $(VIM_DIR)/.build: $(VIM_DIR)/.configured
|
|||||||
|
|
||||||
$(TARGET_DIR)/usr/bin/vim: $(VIM_DIR)/.build
|
$(TARGET_DIR)/usr/bin/vim: $(VIM_DIR)/.build
|
||||||
(cd $(VIM_DIR)/src; \
|
(cd $(VIM_DIR)/src; \
|
||||||
make DESTDIR=$(TARGET_DIR) installvimbin; \
|
$(MAKE) DESTDIR=$(TARGET_DIR) installvimbin; \
|
||||||
make DESTDIR=$(TARGET_DIR) installlinks; \
|
$(MAKE) DESTDIR=$(TARGET_DIR) installlinks; \
|
||||||
)
|
)
|
||||||
ifeq ($(BR2_PACKAGE_VIM_RUNTIME),y)
|
ifeq ($(BR2_PACKAGE_VIM_RUNTIME),y)
|
||||||
(cd $(VIM_DIR)/src; \
|
(cd $(VIM_DIR)/src; \
|
||||||
make DESTDIR=$(TARGET_DIR) installrtbase; \
|
$(MAKE) DESTDIR=$(TARGET_DIR) installrtbase; \
|
||||||
make DESTDIR=$(TARGET_DIR) installmacros; \
|
$(MAKE) DESTDIR=$(TARGET_DIR) installmacros; \
|
||||||
)
|
)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user