diff options
author | Zach van Rijn <me@zv.io> | 2024-12-04 14:52:27 +0000 |
---|---|---|
committer | Zach van Rijn <me@zv.io> | 2024-12-04 14:53:37 +0000 |
commit | f160dc08c3148f0c343ee087c6725da9b443c4ee (patch) | |
tree | a690f8b49885b924610dc2290653f6c8562bcb29 /system/libexecinfo | |
parent | 00eead1d1a32c44a4600dad217e83dc8b1cdb05c (diff) | |
download | packages-f160dc08c3148f0c343ee087c6725da9b443c4ee.tar.gz packages-f160dc08c3148f0c343ee087c6725da9b443c4ee.tar.bz2 packages-f160dc08c3148f0c343ee087c6725da9b443c4ee.tar.xz packages-f160dc08c3148f0c343ee087c6725da9b443c4ee.zip |
system/libexecinfo: fix accidental CFLAGS removal.
Diffstat (limited to 'system/libexecinfo')
-rw-r--r-- | system/libexecinfo/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libexecinfo/APKBUILD b/system/libexecinfo/APKBUILD index b2a2c4591..02ec8213c 100644 --- a/system/libexecinfo/APKBUILD +++ b/system/libexecinfo/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: A. Wilcox <awilfox@adelielinux.org> pkgname=libexecinfo pkgver=1.1 -pkgrel=3 +pkgrel=4 pkgdesc="Library for inspecting backtraces" url="https://www.freshports.org/devel/libexecinfo" arch="all" @@ -21,7 +21,7 @@ build() { } check() { - ${CC:-cc} -I. -L. -ggdb -o test test.c -lexecinfo + ${CC:-cc} -I. -L. ${CFLAGS} -o test test.c -lexecinfo ./test } |