Re: fc3/x86_64 + Garnome 2.13.92 == success !



On 3/10/06, Adam Worrall <abworrall gmail com> wrote:

I missed a lib in my post-install hack here:

>  * bootstrap/popt
>
> This needed a 'make makesums'.
>
> Worse, it put its libraries into $prefix/lib64, despite all
> instructions to put them in $prefix/lib; so I added a post-install
> hack to the Makefile to symlink them in:
>
> post-install:
>         @echo "Linking in from stupid lib64..."
>         @LIB_LIST="libpopt.so"; \
>         cd $(libdir); \
>         for file in $$LIB_LIST; do \
>                 ln -sf ../lib64/$$file .; \
>         done
>         @$(MAKECOOKIE)

It should in fact be

post-install:
	@echo "Linking in from stupid lib64..."
	@LIB_LIST="libpopt.la libpopt.so"; \
	cd $(libdir); \
	for file in $$LIB_LIST; do \
		ln -sf ../lib64/$$file .; \
	done
	@$(MAKECOOKIE)

 - Adam



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