diff options
author | Thomas De Schampheleire <patrickdepinguin@gmail.com> | 2014-06-11 21:12:26 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-06-14 19:10:08 +0200 |
commit | f6fc9abd10ea00df53dcaea0083063a1e3433150 (patch) | |
tree | 7d3c45571472b67cead84d95b68ab2ede22a50e1 | |
parent | 7742d073a434b07a72cdef5bf0eb81572e6c3a8c (diff) | |
download | buildroot-f6fc9abd10ea00df53dcaea0083063a1e3433150.tar.gz buildroot-f6fc9abd10ea00df53dcaea0083063a1e3433150.zip |
pkg-virtual: simplify definition of FOO_VERSION to 'virtual'
As mentioned in the e-mail accompanying the introduction of the pkg-virtual
infrastructure [1], the definition of FOO_VERSION is 'strange'.
After the cleanup of single/double dollar signs in inner-generic-package,
the special construction in pkg-virtual is no longer needed and can be
simplified.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
[1] http://lists.busybox.net/pipermail/buildroot/2014-April/093670.html
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/pkg-virtual.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/package/pkg-virtual.mk b/package/pkg-virtual.mk index 56e2d044b5..f5d7567237 100644 --- a/package/pkg-virtual.mk +++ b/package/pkg-virtual.mk @@ -45,8 +45,7 @@ endif $(2)_SOURCE = # Fake a version string, so it looks nicer in the build log -$(3)_VERSION = virtual -HOST_$(3)_VERSION = virtual +$(2)_VERSION = virtual # This must be repeated from inner-generic-package, otherwise we get an empty # _DEPENDENCIES |