Commit 789f6137 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

fbset: misc cleanup



Use install -D so it doesn't fail if usr/sbin doesn't exist, remove
unneeded stripping and move target cleanup to _UNINSTALL_TARGET_CMDS.

Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent b850ce81
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -6,20 +6,20 @@
FBSET_VERSION = 2.1
FBSET_SOURCE = fbset-$(FBSET_VERSION).tar.gz
FBSET_SITE = http://users.telenet.be/geertu/Linux/fbdev
FBSET_BINARY = fbset
FBSET_TARGET_BINARY = usr/sbin/$(FBSET_BINARY)

define FBSET_BUILD_CMDS
	$(MAKE1) $(TARGET_CONFIGURE_OPTS) -C $(@D)
endef

define FBSET_INSTALL_TARGET_CMDS
	$(INSTALL) -m 755 $(@D)/$(FBSET_BINARY) $(TARGET_DIR)/$(FBSET_TARGET_BINARY)
	-$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/$(FBSET_TARGET_BINARY)
	$(INSTALL) -D -m 755 $(@D)/fbset $(TARGET_DIR)/usr/sbin/fbset
endef

define FBSET_UNINSTALL_TARGET_CMDS
	rm -f $(TARGET_DIR)/usr/sbin/fbset
endef

define FBSET_CLEAN_CMDS
	rm -f $(TARGET_DIR)/$(FBSET_TARGET_BINARY)
	-$(MAKE) -C $(@D) clean
endef