Re: [SOLVED] How to do a local install?
Jorge Arellano Cid <[email protected]>
| Newsgroups | gmane.comp.web.dillo.devel |
|---|---|
| Message-ID | <[email protected]> |
On Thu, Jan 22, 2015 at 02:38:34AM -0500, Walter Dnes wrote:
> [...]
> For future reference, my build script goes like so...
>
>
> #!/bin/bash
> # hg clone http://hg.dillo.org/dillo dillo3
> cd /home/waltdnes/dillo/dillo3
> CFLAGS="-O2 -march=native -fomit-frame-pointer -pipe -fno-unwind-tables -fno-asynchronous-unwind-tables"
> CXXFLAGS=${CFLAGS}
> make clean
> git pull
> ./autogen.sh
> ./configure \
> --prefix=/home/waltdnes/.local \
> --enable-ssl \
> --disable-ipv6 \
> --enable-cookies \
> --enable-png \
> --enable-jpg \
> --enable-gif \
> --enable-threaded-dns \
> --enable-dependency-tracking
> make
> make install-strip
>
> To accomadate the "--prefix=/home/waltdnes/.local" I've added
> "/home/waltdnes/.local/bin" to my PATH.
AFAICS:
git pull
should be:
hg pull
hg update
--
Cheers
Jorge.-