[Lunar-commits] <moonbase> doxygen: Adjusting the BUILD so it does not croak on;

Dennis `stumbles` Veatch stumbles at lunar-linux.org
Sun Oct 10 13:58:52 CEST 2010


commit fc1255a67dfcf0fb877cc5f59349893dca4a6684
Author: Dennis `stumbles` Veatch <stumbles at lunar-linux.org>
Date:   Sun Oct 10 07:58:52 2010 -0400

    doxygen: Adjusting the BUILD so it does not croak on;
    
    cd examples ; /var/lib/lunar/compilers/make
    make[1]: Entering directory `/usr/src/doxygen-1.7.2/examples'
    /usr/src/doxygen-1.7.2/bin/doxygen class.cfg
    make[1]: /usr/src/doxygen-1.7.2/bin/doxygen: Command not found
    make[1]: *** [class/html/index.html] Error 127
    make[1]: Leaving directory `/usr/src/doxygen-1.7.2/examples'
    make: *** [docs] Error 2
    Creating /var/log/lunar/compile/doxygen-1.7.2.bz2
    ! Problem detected during BUILD
---
 doc-tools/doxygen/BUILD |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/doc-tools/doxygen/BUILD b/doc-tools/doxygen/BUILD
index a7e3a56..fbd62dd 100644
--- a/doc-tools/doxygen/BUILD
+++ b/doc-tools/doxygen/BUILD
@@ -1,7 +1,8 @@
 (
 
   if module_installed qt4; then
-    . /etc/profile.d/qt4.rc
+    . /etc/profile.d/qt4.rc &&
+    OPTS+=" --with-doxywizard"
   fi &&
 
   OPTS+=" --prefix /usr "  &&
@@ -12,12 +13,13 @@
     make distclean
   fi &&
 
-  ./configure $OPTS  &&
+  ./configure $OPTS &&
+
+  default_make &&
 
   if which python 2> /dev/null 1>&2; then
      make docs
   fi  &&
-  default_make  &&
 
 # I have notice with some apps notice during make
 # the /usr/share/doc/apr/docs/doxygen.conf needs to be updated. This takes


More information about the Lunar-commits mailing list