From d9fdb1ccf2438fba6f68c2ca06bccc40791d8ce9 Mon Sep 17 00:00:00 2001 From: kyak Date: Wed, 28 Jul 2010 19:46:07 +0400 Subject: [PATCH] fbsize: paths fixed --- fbsize/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fbsize/Makefile b/fbsize/Makefile index 84a7706..c98ce96 100644 --- a/fbsize/Makefile +++ b/fbsize/Makefile @@ -20,11 +20,11 @@ define Package/fbsize endef define Package/fbsize/description - fbsize, a dummy utility to show current terminal size (might be handy) + fbsize, a small utility to show current terminal size (might be handy) endef define Build/Compile - $(TARGET_CC) -o fbsize ./files/fbsize.c + $(TARGET_CC) -o $(PKG_BUILD_DIR)/fbsize ./files/fbsize.c endef define Package/fbsize/install @@ -32,7 +32,7 @@ define Package/fbsize/install $(1)/usr/bin $(INSTALL_BIN) \ - fbsize \ + $(PKG_BUILD_DIR)/fbsize \ $(1)/usr/bin/fbsize endef