15bff58f3e
Remove the redundant usr/ component of the HOST_DIR paths. Since a previous commit added a symlink from $(HOST_DIR)/usr to $(HOST_DIR), everything keeps on working. This is a mechanical change with git grep -l '\$(HOST_DIR)/usr' | xargs sed -i 's%\(prefix\|PREFIX\)=\("\?\)\$(HOST_DIR)/usr%\1=\2$(HOST_DIR)%g' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
578 B
Makefile
21 lines
578 B
Makefile
################################################################################
|
|
#
|
|
# libfaketime
|
|
#
|
|
################################################################################
|
|
|
|
FAKETIME_VERSION = v0.9.6
|
|
FAKETIME_SITE = $(call github,wolfcw,libfaketime,$(FAKETIME_VERSION))
|
|
FAKETIME_LICENSE = GPL-2.0
|
|
FAKETIME_LICENSE_FILES = COPYING
|
|
|
|
define HOST_FAKETIME_BUILD_CMDS
|
|
$(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) PREFIX=$(HOST_DIR)
|
|
endef
|
|
|
|
define HOST_FAKETIME_INSTALL_CMDS
|
|
$(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) PREFIX=$(HOST_DIR) install
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|