On 3/10/06, Adam Worrall <[EMAIL PROTECTED]> 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
--
garnome-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/garnome-list

Reply via email to