|
A programmer somewhere may have the *real* answer, but I made a script to solve this problem (attached). I don't know much about autoconf/automake, but this works for me. Run it from the asdbget directory (this worked for building other programs from CVS too and is not specific to asdbget). GOMEZ Henri wrote: > I grabbed asdbget stuff from CVS, but how could I generate configure ? > autconf and automake failed ! >
#!/bin/bash if !(aclocal) then echo "aclocal failed" exit 1 fi if !(autoheader) then echo "autoheader failed" exit 1 fi if !(autoconf) then echo "autoconf failed" exit 1 fi if !(automake --add-missing) then echo "automake failed" exit 1 fi
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.