summaryrefslogtreecommitdiff
path: root/system
diff options
context:
space:
mode:
authorZach van Rijn <me@zv.io>2022-05-04 19:50:40 +0000
committerZach van Rijn <me@zv.io>2022-05-06 12:37:31 -0500
commit48081df32ece3c04cfdc798cff96213287311c7e (patch)
treeab4706652c41ed55ed9ef341f100b5297d099a4f /system
parent67a3919eb8574b126b3fda7032cf8b9ee670a0f1 (diff)
downloadpackages-48081df32ece3c04cfdc798cff96213287311c7e.tar.gz
packages-48081df32ece3c04cfdc798cff96213287311c7e.tar.bz2
packages-48081df32ece3c04cfdc798cff96213287311c7e.tar.xz
packages-48081df32ece3c04cfdc798cff96213287311c7e.zip
system/libexecinfo: clean up unnecessary flags.
Diffstat (limited to 'system')
-rw-r--r--system/libexecinfo/APKBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libexecinfo/APKBUILD b/system/libexecinfo/APKBUILD
index 0d240b86c..b2a2c4591 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=2
+pkgrel=3
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 -fno-omit-frame-pointer $CFLAGS -o test test.c -lexecinfo
+ ${CC:-cc} -I. -L. -ggdb -o test test.c -lexecinfo
./test
}