简体   繁体   中英

Doxygen Linux “make install” error

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM