I downloaded openssh-6.1.p1/tar.gz with http://mirror.corbina.net/pub/OpenBSD/OpenSSH/portable/. I made at first ./configure, then make which, it seems, fulfilled without errors (Nexenta Illumos operating system).
My computer has Ubuntu 11.10 32-bit OS
I downloaded gcc4.4.6 core package (tar file) , Unzipped it and tried following
./configure
sudo make install
which showed me the following error
vidhya@vidhya-Reserved:~/Desktop/gcc-4.4.6$ sudo make install
make[1]: Entering directory `/home/vidhya/Desktop/gcc-4.4.6'
/bin/bash ./mkinstalldirs /usr/local /usr/local
/bin/bash: line 3: cd: host-i686-p
Hello!
I'm puzzled by how the path used for finding man pages is set. The "right thing" seems to happen magically.
I am compiling xvidcap, I used "./configure;make;make install". install fails
Code:
Making install in doc
make[1]: Entering directory `/usr/src/xvidcap-1.1.7/doc'
Making install in xvidcap
make[2]: Entering directory `/usr/src/xvidcap-1.1.7/doc/xvidcap'
Making install in C
make[3]: Entering directory `/usr/src/xvidcap-1.1.7/doc/xvidcap/C'
I installed the VSFTPd 3.0.2 on Ubuntu 12.04 following this commands:
$ wget https://security.appspot.com/downloads/vsftpd-3.0.2.tar.gz
$ tar xzvf vsftpd-3.0.2.tar.gz
$ cd vsftpd-3.0.2
$ make -j8
$ mkdir -p /usr/share/empty /var/ftp /usr/local/man/man5 /usr/local/man/man8
$ useradd -d /var/ftp ftp
$ chown root.root /var/ftp
$ chmod og-w /var/ftp
$ cp vsftpd.conf /etc
$ make install
So, to
local/e_dbus 1.7.2-1
local/edje 1.7.2-1
local/eeze 1.7.2-1
local/efreet 1.7.2-1
local/eio 1.7.2-1
local/elementary 1.7.2-1
local/ecore 1.7.2-1
local/eina 1.7.2-1
local/eet 1.7.2-1
local/evas 1.7.2-1
local/evas_generic_loaders 1.7.2-1
local/embryo 1.7.2-1
local/ethumb 1.7.2-1
local/emotion 1.7.2-1
splippity
https://bbs.archlinux.org/profile.php?id=37336
2012-11-30T03:45:41Z
When distributing a custom utility I'll typically write a makefile that installs binaries to /usr/local by default
PREFIX ?= /usr/local
MANPREFIX ?= ${PREFIX}/man
install:
install utility ${PREFIX}/bin/
install utility.1 ${MANPREFIX}/man1/
The path to local binaries is fairly standard across different platforms, but the man path is not
Linux: /usr/local/share/man or /usr/local/man
Ma
Ok so I am trying to install nano in terminal on my macbook. I downloaded the file, unzipped it, and located the folder/files in terminal. I ran the ./configure command. Then "make." Both ran fine. On "make install" I keep getting an error about permissions and making a directory.