diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2010-05-27 12:15:40 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-06-02 14:06:02 +0100 |
commit | 8514bcf5f857db19789b6f0f88300609622a98fe (patch) | |
tree | ed794cd84ec5cf03759322e9521575dd6187b01b | |
parent | 2ddc6c4b03395e3e5332d23aab61070c49885465 (diff) | |
download | poky-8514bcf5f857db19789b6f0f88300609622a98fe.tar.gz |
iproute2: fix an issues with DATETIME
The DATE variable in this bb files was distrubing the DATETIME variable
used by the distro_check task.
Renamed the DATE variable to SRCDATE
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
-rw-r--r-- | meta/packages/iproute2/iproute2.inc | 6 | ||||
-rw-r--r-- | meta/packages/iproute2/iproute2_2.6.18.bb | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/meta/packages/iproute2/iproute2.inc b/meta/packages/iproute2/iproute2.inc index 006b27b60f..0d7b11028a 100644 --- a/meta/packages/iproute2/iproute2.inc +++ b/meta/packages/iproute2/iproute2.inc | |||
@@ -3,10 +3,10 @@ SECTION = "base" | |||
3 | LICENSE = "GPL" | 3 | LICENSE = "GPL" |
4 | DEPENDS = "flex-native bison-native" | 4 | DEPENDS = "flex-native bison-native" |
5 | 5 | ||
6 | # Set DATE in the .bb file | 6 | # Set SRCDATE in the .bb file |
7 | SRC_URI = "http://developer.osdl.org/dev/iproute2/download/${P}-${DATE}.tar.gz" | 7 | SRC_URI = "http://developer.osdl.org/dev/iproute2/download/${P}-${SRCDATE}.tar.gz" |
8 | 8 | ||
9 | S = "${WORKDIR}/${P}-${DATE}" | 9 | S = "${WORKDIR}/${P}-${SRCDATE}" |
10 | 10 | ||
11 | EXTRA_OEMAKE = "CC='${CC}' KERNEL_INCLUDE=${STAGING_KERNEL_DIR}/include DOCDIR=${docdir}/iproute2 SUBDIRS='lib tc ip' SBINDIR=/sbin" | 11 | EXTRA_OEMAKE = "CC='${CC}' KERNEL_INCLUDE=${STAGING_KERNEL_DIR}/include DOCDIR=${docdir}/iproute2 SUBDIRS='lib tc ip' SBINDIR=/sbin" |
12 | 12 | ||
diff --git a/meta/packages/iproute2/iproute2_2.6.18.bb b/meta/packages/iproute2/iproute2_2.6.18.bb index 72eb39d69d..0fc0b8f98c 100644 --- a/meta/packages/iproute2/iproute2_2.6.18.bb +++ b/meta/packages/iproute2/iproute2_2.6.18.bb | |||
@@ -5,4 +5,4 @@ require iproute2.inc | |||
5 | SRC_URI += "file://iproute2-2.6.15_no_strip.diff;patch=1;pnum=0 \ | 5 | SRC_URI += "file://iproute2-2.6.15_no_strip.diff;patch=1;pnum=0 \ |
6 | file://new-flex-fix.patch;patch=1" | 6 | file://new-flex-fix.patch;patch=1" |
7 | 7 | ||
8 | DATE = "061002" | 8 | SRCDATE = "061002" |