Skip to content
Snippets Groups Projects
Commit 456d8455 authored by Timothy Legge's avatar Timothy Legge Committed by Natanael Copa
Browse files

main/perl-extutils-pkgconfig: remove backticks from APKBUILD

parent 2ac7a77d
No related branches found
No related tags found
No related merge requests found
......@@ -20,12 +20,12 @@ check() {
}
prepare() {
export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'`
export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
}
build() {
export CFLAGS=`perl -MConfig -E 'say $Config{ccflags}'`
export CFLAGS=$(perl -MConfig -E 'say $Config{ccflags}')
make
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment