1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-09-28 21:54:09 +03:00

fbsize: paths fixed

This commit is contained in:
kyak 2010-07-28 19:46:07 +04:00
parent 844f885242
commit d9fdb1ccf2

View File

@ -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