diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-01-16 10:34:08 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-01-16 10:34:08 +0000 |
commit | b4fe14bf6c66c49c7c605dc12eb7d60aa5c19c04 (patch) | |
tree | 5e54d6c8923ab31bac6b57078f52a4b00c0f1992 /testing/chntpw | |
parent | af0237cd786cec926806252624e057041019a076 (diff) | |
download | aports-b4fe14bf6c66c49c7c605dc12eb7d60aa5c19c04.tar.bz2 aports-b4fe14bf6c66c49c7c605dc12eb7d60aa5c19c04.tar.xz |
testing/chntpw: use compiler from abuild.conf but fallback to gcc
Diffstat (limited to 'testing/chntpw')
-rw-r--r-- | testing/chntpw/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/chntpw/APKBUILD b/testing/chntpw/APKBUILD index 90d80eb8f1..7fb753678a 100644 --- a/testing/chntpw/APKBUILD +++ b/testing/chntpw/APKBUILD @@ -27,7 +27,7 @@ prepare() { build() { cd "$_builddir" - make CC="gcc" CFLAGS="$CFLAGS -DUSEOPENSSL" LIBS="-lcrypto" \ + make CC="${CC:-gcc}" CFLAGS="$CFLAGS -DUSEOPENSSL" LIBS="-lcrypto" \ chntpw cpnt reged || return 1 } |