From b1efc5d9c2cd71c1db00d5849b283c05b0a1fb2e Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Thu, 18 Jun 2009 06:44:53 +0000 Subject: [PATCH] testing/hylafax: fix compilation when CC=ccache. fix depends --- testing/hylafax/APKBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/testing/hylafax/APKBUILD b/testing/hylafax/APKBUILD index b318497e176..42450d46782 100644 --- a/testing/hylafax/APKBUILD +++ b/testing/hylafax/APKBUILD @@ -7,7 +7,7 @@ pkgdesc="Sends and receives faxes" url="http://www.hylafax.org/" license="custom" #depends on gcc for libgcc_s.so, it's scripts are hardcoded to bash -depends="uclibc uclibc++ zlib tiff ghostscript bash gcc" +depends="ghostscript bash" makedepends="zlib-dev tiff-dev uclibc++-dev" install="hylafax.post-install" subpackages="$pkgname-doc" @@ -22,7 +22,8 @@ build() { sed -i -e 's:"iostream.h":\n using namespace std;:g' \ configure - + # the configure script does not handle ccache or distcc + export CC=gcc ./configure --nointeractive --disable-pam \ --with-CXX=/usr/bin/g++-uc \ --with-DIR_BIN=/usr/bin \