Packaging mono hack - is there a way to do this?

Mamoru Tasaka mtasaka at ioa.s.u-tokyo.ac.jp
Sat Nov 29 16:00:15 UTC 2008


Paul wrote, at 11/30/2008 12:48 AM +9:00:
> Hi,
>
> As a thought, is there a way to do something like this
> 
> for i in [alldirectories]/Makefile.{in,am} \
>          [alldirectories]/*.pc.in \
> ; do
> sed -i -e 's!$(prefix)/lib!%{_libdir}!' "$i"
> done
> 
> where [alldirectories] is a recursive call into every directory within
> the application.

find . -name Makefile.in -or -name Makefile.am -or -name \*.pc.in \
	| while read f ; do ... ; done

for example.

Mamoru




More information about the devel mailing list