From 91604a5a5913ea51064423b4360b55c27d93e64a Mon Sep 17 00:00:00 2001 From: Wojciech Slenska Date: Mon, 3 Mar 2025 13:33:31 +0100 Subject: [PATCH] debugcc: update to the latest revision, update repo address Updated to the latest revision, updated repo address. Changed build system to meson. Signed-off-by: Wojciech Slenska --- recipes-devtools/debugcc/debugcc_git.bb | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/recipes-devtools/debugcc/debugcc_git.bb b/recipes-devtools/debugcc/debugcc_git.bb index abdc72ea3..74d1c01de 100644 --- a/recipes-devtools/debugcc/debugcc_git.bb +++ b/recipes-devtools/debugcc/debugcc_git.bb @@ -1,26 +1,18 @@ SUMMARY = "A tool to debug Qualcomm clock controllers." -HOMEPAGE = "https://github.com/andersson/debugcc/" +HOMEPAGE = "https://github.com/linux-msm/debugcc/" SECTION = "devel" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://debugcc.c;beginline=5;endline=29;md5=5598b6b886a3af944e4d19bb7d947095" SRC_URI = "\ - git://github.com/andersson/debugcc.git;branch=master;protocol=https \ + git://github.com/linux-msm/debugcc.git;branch=master;protocol=https \ " -SRCREV = "1f2d56984ec60e6ca0a18718c75c4e593542cefc" +SRCREV = "6444cf924b53b8453c2285cde48b6c52e5960089" PV = "0.0+git" S = "${WORKDIR}/git" -EXTRA_OEMAKE = "CC='${CC}' CPPFLAGS='${CPPFLAGS}' CFLAGS='${CFLAGS}' LDFLAGS='${LDFLAGS}'" - -do_install() { - install -d ${D}${bindir} - install -m 0755 ${B}/debugcc ${D}${bindir} - for f in ${B}/*-debugcc ; do - ln -r -s -T ${D}${bindir}/debugcc ${D}${bindir}/`basename $f` - done -} +inherit meson