Re: SPEC file for pkgconfig



On Sat, 2002-01-19 at 00:45, Gregory Leblanc wrote:
> Woo, cool.  I'll make some comments below!
> 	Greg
> 

Some great comments. I learned a couple of new things there.

> I'm still undecided if it's "cleaner" looking to do the above, or to put
> just one argument on each line, like this:
> 
> ./configure --disable-gtk-doc			\
>     --prefix=%{_prefix}				\
>     --bindir=%{_bindir}				\
>     --mandir=%{_mandir}				\
>     --localstatedir=%{_localstatedir}		\
>     --libdir=%{_libdir}				\
>     --datadir=%{_datadir}			\
>     --includedir=%{_includedir}			\
>     --sysconfdir=%{_sysconfdir}			\
>     --sbindir=%{_sbindir}
> 
> Anybody have strong opinions either way?
>

Yeah, I much prefer ^^^this^^^ method, but it's a bit annoying trying to
keep the line breaks lined up, so I normally just do :

./configure \
	--disable-gtk-doc \
	--prefix=%{_prefix} \
	--bindir=%{_bindir}

etc.

--
Ross





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