diff options
| author | Til Kaiser | 2024-11-12 15:33:56 +0000 |
|---|---|---|
| committer | Christian Marangi | 2024-11-12 16:55:16 +0000 |
| commit | dbe01f7d999d0e02fa1e01aa596562ce04ec1f6a (patch) | |
| tree | 16ca8f9265e1a165b994bc56357ff74aa88324b5 | |
| parent | 8729d2a64d282d37b69c0853269af401a0102517 (diff) | |
| download | openwrt-dbe01f7d999d0e02fa1e01aa596562ce04ec1f6a.tar.gz | |
perf: fix version for APK
Change the version schema of perf to be compatible with APK as
described in this commit: e8725a932e16eaf6ec51add8c084d959cbe32ff2.
Signed-off-by: Til Kaiser <mail@tk154.de>
Link: https://github.com/openwrt/openwrt/pull/16930
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | package/devel/perf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/devel/perf/Makefile b/package/devel/perf/Makefile index 20be59516d..a2830420cc 100644 --- a/package/devel/perf/Makefile +++ b/package/devel/perf/Makefile @@ -30,7 +30,7 @@ define Package/perf DEPENDS:= +libelf +libdw +PACKAGE_libunwind:libunwind +libpthread +librt +objdump @!IN_SDK @KERNEL_PERF_EVENTS \ +PACKAGE_libbfd:libbfd +PACKAGE_libopcodes:libopcodes +libtraceevent TITLE:=Linux performance monitoring tool - VERSION:=$(LINUX_VERSION)-$(PKG_RELEASE) + VERSION:=$(LINUX_VERSION)-r$(PKG_RELEASE) URL:=http://www.kernel.org endef |