Commit 2073c21e authored by Will Newton's avatar Will Newton Committed by Peter Korsgaard
Browse files
parent c8fd9421
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -672,6 +672,7 @@ source "package/logsurfer/Config.in"
source "package/screen/Config.in"
source "package/sudo/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
source "package/time/Config.in"
source "package/which/Config.in"
endif
source "package/xmlstarlet/Config.in"

package/time/Config.in

0 → 100644
+6 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_TIME
	bool "time"
	help
	  The GNU time utility.

	  http://savannah.gnu.org/projects/time/

package/time/time.mk

0 → 100644
+17 −0
Original line number Diff line number Diff line
#############################################################
#
# time
#
#############################################################

TIME_VERSION = 1.7
TIME_SITE = $(BR2_GNU_MIRROR)/time
TIME_CONF_ENV = ac_cv_func_wait3=yes

# time uses an old version of automake that does not support
# installing in DESTDIR.
define TIME_INSTALL_TARGET_CMDS
	install -D -m 755  $(@D)/time $(TARGET_DIR)/usr/bin/time
endef

$(eval $(autotools-package))