1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 05:09:24 +00:00

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>
This commit is contained in:
Nitin A Kamble
2010-05-27 12:15:40 -07:00
committed by Richard Purdie
parent 2ddc6c4b03
commit 8514bcf5f8
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -3,10 +3,10 @@ SECTION = "base"
LICENSE = "GPL"
DEPENDS = "flex-native bison-native"
# Set DATE in the .bb file
SRC_URI = "http://developer.osdl.org/dev/iproute2/download/${P}-${DATE}.tar.gz"
# Set SRCDATE in the .bb file
SRC_URI = "http://developer.osdl.org/dev/iproute2/download/${P}-${SRCDATE}.tar.gz"
S = "${WORKDIR}/${P}-${DATE}"
S = "${WORKDIR}/${P}-${SRCDATE}"
EXTRA_OEMAKE = "CC='${CC}' KERNEL_INCLUDE=${STAGING_KERNEL_DIR}/include DOCDIR=${docdir}/iproute2 SUBDIRS='lib tc ip' SBINDIR=/sbin"
+1 -1
View File
@@ -5,4 +5,4 @@ require iproute2.inc
SRC_URI += "file://iproute2-2.6.15_no_strip.diff;patch=1;pnum=0 \
file://new-flex-fix.patch;patch=1"
DATE = "061002"
SRCDATE = "061002"