mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 22:26:31 +00:00
package/nbd: fix utilities locations
Currently, the code expects both the client and server to be in /usr/bin, while the client is in /usr/sbin Fix that. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
6155118fa9
commit
4aabbeb245
@ -19,14 +19,14 @@ NBD_CONF_ENV = ac_cv_header_linux_falloc_h=no
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq ($(BR2_PACKAGE_NBD_CLIENT),y)
|
ifneq ($(BR2_PACKAGE_NBD_CLIENT),y)
|
||||||
NBD_TOREMOVE += nbd-client
|
NBD_TOREMOVE += /usr/sbin/nbd-client
|
||||||
endif
|
endif
|
||||||
ifneq ($(BR2_PACKAGE_NBD_SERVER),y)
|
ifneq ($(BR2_PACKAGE_NBD_SERVER),y)
|
||||||
NBD_TOREMOVE += nbd-server
|
NBD_TOREMOVE += /usr/bin/nbd-server
|
||||||
endif
|
endif
|
||||||
|
|
||||||
define NBD_CLEANUP_AFTER_INSTALL
|
define NBD_CLEANUP_AFTER_INSTALL
|
||||||
rm -f $(addprefix $(TARGET_DIR)/usr/sbin/, $(NBD_TOREMOVE))
|
rm -f $(addprefix $(TARGET_DIR), $(NBD_TOREMOVE))
|
||||||
endef
|
endef
|
||||||
|
|
||||||
NBD_POST_INSTALL_TARGET_HOOKS += NBD_CLEANUP_AFTER_INSTALL
|
NBD_POST_INSTALL_TARGET_HOOKS += NBD_CLEANUP_AFTER_INSTALL
|
||||||
|
Loading…
x
Reference in New Issue
Block a user