You are not logged in.
Pages: 1
I posted this in proxychains forums. Not getting any answers.. Its just a compile problem.
http://proxychains.sourceforge.net/foru … .php?t=204
The problem:
I install anything i compile from source into my 'Root' directory under my home folder.
So I did autoconf and automake without any error.
[Background info for arch! people] this is needed by this version of proxychains
Then proxychains.
./configure --prefix=~/Root
[hpr@myhost proxychains-2.1]$ make
cd . && aclocal
aclocal: couldn't open directory `~/Root//share/aclocal': No such file or directory
make: *** [aclocal.m4] Error 2
and
[hpr@myhost proxychains-2.1]$ ls ~/Root//share/aclocal/
ccstdc.m4 header.m4 maintainer.m4 obstack.m4 sanity.m4
cond.m4 init.m4 missing.m4 protos.m4 strtod.m4
dmalloc.m4 lex.m4 mktime.m4 ptrdiff.m4 termios.m4
error.m4 lispdir.m4 multi.m4 regex.m4 winsz.m4
My env:
[hpr@myhost proxychains-2.1]$ env |sort
ACLOCAL_FLAGS= -I /opt/gnome/share/aclocal
COLORTERM=gnome-terminal
COLUMNS=80
DISPLAY=:0.0
GNOME2_PATH=/opt/gnome
GNOMEDIR=/opt/gnome
GNOME_DESKTOP_SESSION_ID=Default
GNOME_KEYRING_SOCKET=/tmp/keyring-KGweMP/socket
GTK_RC_FILES=/opt/gnome/etc/gtk/gtkrc:/home/hpr/.gtkrc-1.2-gnome2
HOME=/home/hpr
HUSHLOGIN=FALSE
HZ=100
INPUTRC=/etc/inputrc
LANG=en_US
LC_COLLATE=C
LESS=-R
LESSCHARSET=latin1
LIBGLADE_MODULE_PATH=:/opt/gnome/lib/libglade/2.0
LINES=24
LOGNAME=hpr
MAIL=/var/spool/mail/hpr
MANPATH=/usr/man:/usr/X11R6/man:/opt/gnome/man
MOZ_PLUGIN_PATH=/opt/mozilla-plugins
OLDPWD=/home/hpr/Source
PATH=/home/hpr/Root/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/X11R6/bin:/opt/bin:/opt/gnome/bin:/opt/mozilla/bin
PKG_CONFIG_PATH=:/opt/gnome/lib/pkgconfig:/opt/mozilla/lib/pkgconfig:/usr/X11R6/lib/pkgconfig
PWD=/home/hpr/Source/proxychains-2.1
SESSION_MANAGER=local/myhost:/tmp/.ICE-unix/8535
SHELL=/bin/bash
SHLVL=3
TERM=xterm
USER=hpr
WINDOWID=19987955
XAUTHORITY=/home/hpr/.Xauthority
XDG_CACHE_HOME=/home/hpr/.cache
XDG_CONFIG_DIRS=/etc/xdg:/opt/gnome/etc/xdg
XDG_CONFIG_HOME=/home/hpr/.config
XDG_DATA_DIRS=/usr/share:/opt/gnome/share
XDG_DATA_HOME=/home/hpr/.local/share
_=/usr/bin/env
Thanks.
Offline
Try
./configure --prefix=/usr
then use
make DESTDIR=~/Root install
to install the app in ~/Root
Just a comment: ~/Root is an unusual place to install apps. Usually, for anything I compile, I make a PKGBUILD and install it on the system.
Offline
It's probably more likely to be called root, not Root, too.
Offline
Try
./configure --prefix=/usr
then use
make DESTDIR=~/Root install
to install the app in ~/Root
Just a comment: ~/Root is an unusual place to install apps. Usually, for anything I compile, I make a PKGBUILD and install it on the system.
Didnt work. Got the same error.
It's probably more likely to be called root, not Root, too.
It's Root
Offline
Pages: 1