mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
tree: respect the package's own default CFLAGS
The tree Makefile defines default CFLAGS form Linux (-DLINUX, etc) which are lost if we don't manually include them in the final CFLAGS. Also break the dependency on EXTRA_OEMAKE containing '-e', disable the unused configure task and, since package has a very short description, set SUMMARY instead of DESCRIPTION. Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
parent
b2bf995c4e
commit
e5f75c657e
|
|
@ -1,4 +1,4 @@
|
|||
DESCRIPTION = "a recursive directory listing command"
|
||||
SUMMARY = "A recursive directory listing command"
|
||||
HOMEPAGE = "http://mama.indstate.edu/users/ice/tree/"
|
||||
SECTION = "console/utils"
|
||||
LICENSE = "GPLv2"
|
||||
|
|
@ -8,7 +8,14 @@ SRC_URI = "ftp://mama.indstate.edu/linux/${BPN}/${BP}.tgz"
|
|||
SRC_URI[md5sum] = "abe3e03e469c542d8e157cdd93f4d8a6"
|
||||
SRC_URI[sha256sum] = "6957c20e82561ac4231638996e74f4cfa4e6faabc5a2f511f0b4e3940e8f7b12"
|
||||
|
||||
# tree's default CFLAGS for Linux
|
||||
CFLAGS += "-Wall -DLINUX -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
|
||||
|
||||
EXTRA_OEMAKE = "CC='${CC}' CFLAGS='${CFLAGS}' LDFLAGS='${LDFLAGS}'"
|
||||
|
||||
do_configure[noexec] = "1"
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${bindir}
|
||||
install -m 0755 ${S}/${BPN} ${D}${bindir}/${BPN}
|
||||
install -m 0755 ${S}/${BPN} ${D}${bindir}/
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user