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

main/perl-file-sharedir-install: remove backticks from APKBUILD

parent add2bca9
No related branches found
No related tags found
No related merge requests found
......@@ -18,12 +18,12 @@ builddir="$srcdir/$_pkgreal-$pkgver"
prepare() {
default_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