[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]

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



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


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]