980-Penguin $ git --version git version 1.9.3 980-Penguin $ git clone git://git.savannah.gnu.org/emacs.git Cloning into 'emacs'... remote: Counting objects: 720838, done. remote: Compressing objects: 100% (132536/132536), done. remote: Total 720838 (delta 589155), reused 719010 (delta 587631) Receiving objects: 100% (720838/720838), 189.95 MiB | 226.00 KiB/s, done. Resolving deltas: 100% (589155/589155), done. Checking connectivity... done. 981-Penguin $ cd emacs 982-Penguin $ ls -l .git/hooks total 40 -rwxr-xr-x. 1 eggert eggert 452 Jan 26 20:44 applypatch-msg.sample -rwxr-xr-x. 1 eggert eggert 896 Jan 26 20:44 commit-msg.sample -rwxr-xr-x. 1 eggert eggert 189 Jan 26 20:44 post-update.sample -rwxr-xr-x. 1 eggert eggert 398 Jan 26 20:44 pre-applypatch.sample -rwxr-xr-x. 1 eggert eggert 1642 Jan 26 20:44 pre-commit.sample -rwxr-xr-x. 1 eggert eggert 1239 Jan 26 20:44 prepare-commit-msg.sample -rwxr-xr-x. 1 eggert eggert 1352 Jan 26 20:44 pre-push.sample -rwxr-xr-x. 1 eggert eggert 4951 Jan 26 20:44 pre-rebase.sample -rwxr-xr-x. 1 eggert eggert 3611 Jan 26 20:44 update.sample 983-Penguin $ ./autogen.sh Checking whether you have the necessary tools... (Read INSTALL.REPO for more details on building Emacs) Checking for autoconf (need at least version 2.65)... ok Checking for automake (need at least version 1.11)... ok Your system has the required tools. Running 'autoreconf -fi -I m4' ... configure.ac:760: installing 'build-aux/compile' configure.ac:139: installing 'build-aux/config.guess' configure.ac:139: installing 'build-aux/config.sub' configure.ac:136: installing 'build-aux/install-sh' configure.ac:136: installing 'build-aux/missing' lib/Makefile.am: installing 'build-aux/depcomp' Installing git hooks... ‘build-aux/git-hooks/commit-msg’ -> ‘.git/hooks/commit-msg’ ‘build-aux/git-hooks/pre-commit’ -> ‘.git/hooks/pre-commit’ ‘.git/hooks/applypatch-msg.sample’ -> ‘.git/hooks/applypatch-msg’ ‘.git/hooks/pre-applypatch.sample’ -> ‘.git/hooks/pre-applypatch’ You can now run './configure'. 984-Penguin $