Skip to content

Commit

Permalink
SConstruct : Added support for relative paths in DOXYGEN option.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhaddon committed Apr 26, 2015
1 parent 49e5ccd commit e54cfcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -994,7 +994,7 @@ o.Add(
o.Add(
"DOXYGEN",
"The path to the doxygen binary.",
"/usr/local/bin/doxygen"
"doxygen"
)

###########################################################################################
Expand Down Expand Up @@ -3295,7 +3295,7 @@ if doConfigure :

sys.stdout.write( "Checking for doxygen... " )

if os.path.exists( docEnv["DOXYGEN"] ) :
if docEnv.WhereIs( docEnv["DOXYGEN"] ) :

sys.stdout.write( "yes\n" )

Expand Down

0 comments on commit e54cfcd

Please sign in to comment.