This is the mail archive of the
cygwin-apps
mailing list for the Cygwin project.
Re: cygport: KEEPDIRS not working, doenv and tcsh
On 28/04/2012 15:13, Corinna Vinschen wrote:
> On Apr 28 09:00, Ken Brown wrote:
>> On 4/28/2012 5:44 AM, Corinna Vinschen wrote:
>
> Another problem I just encountered is this:
>
> OpenSSL cannot be built outside its source tree. So my src_compile
> looks like this:
Use 'lndirs' instead
> src_compile() {
> cd ${S} # <---
> ./config ${CONFIG_OPTIONS}
> make depend
> make
> }
>
> Now all the created binaries are in ${S} as well, of course. This
> results in an enormous src patch file, which doesn't make sense at
> all. Additionally I'm always building OpenSSL from the upstream
> vanilla sources anyway. So what I tried was this:
>
> DIFF_EXCLUDES='*'
>
> Unfortunately this doesn't have the desired effect. The src patch
> is still big and contains all the created binaries as well.
>
> How do I tell cygport not to create a src patch file?