0

I try to install doxygen on my linux 2.3.32. ./configure runs fine. But make install throws a error

/usr/bin/install: call stat for "bin/doxywizard" not possible: file or directory not found

In fact, there is no such a file. But how can I solve that?

edit:

Output

-003:~/Downloads/doxygen-1.2.11$ ./configure && sudo make && make install
  Checking for GNU install tool... using /usr/bin/install
  Created Makefile from Makefile.in...
/usr/bin/install -d /usr/local/bin
/usr/bin/install -d /usr/local/doc/doxygen
/usr/bin/install -m 755 bin/doxygen    /usr/local/bin
/usr/bin/install -m 755 bin/doxytag    /usr/local/bin
/usr/bin/install -m 755 bin/doxysearch /usr/local/bin
/usr/bin/install -m 755 bin/doxywizard /usr/local/bin
/usr/bin/install: Aufruf von stat für „bin/doxywizard“ nicht möglich: Datei oder Verzeichnis nicht gefunden
make: *** [install] Fehler 1
Manfred
  • 159
  • 5
  • 17

1 Answers1

1

You do the

$> make install

directly after configuring. The install target is usually only meant to copy/link the generated binaries to their destination directories. Beforehand, you need to actually compile them by running

$> make
BjoernD
  • 4,720
  • 27
  • 32
  • Can you then please post the *full* log of the commands you ran and the output you saw? – BjoernD Sep 20 '12 at 11:10
  • Here you are. The full output – Manfred Sep 20 '12 at 11:13
  • Can you try a "make clean" and re-run? The log output looks like the configure run does not finish and that "make install" is directly executed before anything is built. This looks weird. – BjoernD Sep 21 '12 at 08:41