projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
standardize Makefile, remove dup description
[openwrt.git]
/
package
/
busybox
/
Makefile
diff --git
a/package/busybox/Makefile
b/package/busybox/Makefile
index
ff23ee7
..
6e9cf41
100644
(file)
--- a/
package/busybox/Makefile
+++ b/
package/busybox/Makefile
@@
-1,18
+1,24
@@
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME:=busybox
# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME:=busybox
-PKG_VERSION:=1.
1.2
+PKG_VERSION:=1.
2.1
PKG_RELEASE:=1
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://www.busybox.net/downloads
PKG_RELEASE:=1
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://www.busybox.net/downloads
-PKG_MD5SUM:=
0b5d78072302fe687407956537bdb9e3
+PKG_MD5SUM:=
362b3dc0f2023ddfda901dc1f1a74391
PKG_CAT:=bzcat
PKG_CAT:=bzcat
-include $(
TOPDIR)/package/rules
.mk
+include $(
INCLUDE_DIR)/package
.mk
define Package/busybox
SECTION:=base
define Package/busybox
SECTION:=base
@@
-23,20
+29,23
@@
TITLE:=Core utilities for embedded Linux
DESCRIPTION:=The Swiss Army Knife of embedded Linux. \\\
It slices, it dices, it makes Julian Fries.
URL:=http://busybox.net/
DESCRIPTION:=The Swiss Army Knife of embedded Linux. \\\
It slices, it dices, it makes Julian Fries.
URL:=http://busybox.net/
-CONFIG:=menu "Configuration" \\\
- depends on PACKAGE_busybox \\\
-source "package/busybox/config/Config.in" \\\
-endmenu
+CONFIG:=\\\
+ menu "Configuration" \\\
+ depends on PACKAGE_busybox \\\
+ source "$(SOURCE)/config/Config.in" \\\
+ endmenu
endef
define Build/Configure
$(SCRIPT_DIR)/gen_busybox_config.pl $(TOPDIR)/.config > $(PKG_BUILD_DIR)/.config
endef
define Build/Configure
$(SCRIPT_DIR)/gen_busybox_config.pl $(TOPDIR)/.config > $(PKG_BUILD_DIR)/.config
- yes '' | $(MAKE) CC=$(TARGET_CC) CROSS="$(TARGET_CROSS)" -C $(PKG_BUILD_DIR) oldconfig
+ yes '' | $(MAKE) CC="$(TARGET_CC)" CROSS="$(TARGET_CROSS)" \
+ -C $(PKG_BUILD_DIR) oldconfig
endef
define Package/busybox/install
endef
define Package/busybox/install
- $(MAKE) CC=$(TARGET_CC) CROSS="$(TARGET_CROSS)" PREFIX="$(1)" \
- EXTRA_CFLAGS="$(TARGET_CFLAGS)" -C $(PKG_BUILD_DIR) install
+ $(MAKE) CC="$(TARGET_CC)" CROSS="$(TARGET_CROSS)" \
+ PREFIX="$(1)" EXTRA_CFLAGS="$(TARGET_CFLAGS)" -C $(PKG_BUILD_DIR) install
+ -rm -rf $(1)/lib64
endef
$(eval $(call BuildPackage,busybox))
endef
$(eval $(call BuildPackage,busybox))
This page took
0.019707 seconds
and
4
git commands to generate.