[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: export variable CONFFLAGS
From: |
Manolis Ragkousis |
Subject: |
Re: export variable CONFFLAGS |
Date: |
Thu, 2 Mar 2017 17:39:50 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.7.1 |
Hello Rene
On 02/28/2017 07:45 AM, address@hidden wrote:
> Hello,
> I am trying to export the variable 'CONFFLAGS' for 'apr' package on
> GNU/Hurd as follows:
>
> (arguments
> #:make-flags ("CONFFLAGS+=apr_cv_struct_ipmreq=no"
> (string-append "PREFIX=" %output))
>
>
> This way does not work!, the Debian project does it as follows:
>
> ifeq (hurd,$(DEB_HOST_ARCH_OS))
> CONFFLAGS += apr_cv_struct_ipmreq=no
> endif
>
> This due to the Hurd does not support multicast yet.
>
> Thanks
Is '(string-append "PREFIX=" %output)' really needed?
Also I think CONFFLAGS is the variable debian package recipes use to
save the configuration options for that package.
Could you use #:configure-flags '("apr_cv_struct_ipmreq=no") and try again?
Thank you
Manolis
- Re: export variable CONFFLAGS,
Manolis Ragkousis <=