Hartmut Goebel writes:
> Am 02.02.2017 um 16:16 schrieb [email protected]:
>> + (string-append "include_dirs.append(\""
>> + (assoc-ref %build-inputs "lzo")
>> "/include/lzo" "\")
>
> You could use single quotes for teh python string to make it more readable:
I think there was a reason for the way it was written. Your
suggestion below makes the substitute fail with:
ERROR: In procedure primitive-load-path:
ERROR: In procedure scm_lreadr: gnu/packages/compression.scm:387:44: illegal
character in escape sequence: #\)
>
> string-append "include_dirs.append('" + (assoc-ref %build-inputs "lzo")
> "/include/lzo" "')
>
>
>> +"))))))))
>
> Also this line-break is confusing. I suggest either using "\n" or to
> change the substitute into something like:
>
>
> + (substitute* "setup.py"
> + (("include_dirs.append\(.*\)") ;; match up to the trailing
> parent only, not the new-line
> + (string-append "include_dirs.append('"
> + (assoc-ref %build-inputs "lzo") "/include/lzo"
> + "')")))))))) ;; put these last few
> characters on the next line
>
> Otherwise LGTM.
--
ng0 . https://www.inventati.org/patternsinthechaos/