Add ctags support for FreeBSD and remove hard-coded paths.

This commit is contained in:
Alex Dupre
2013-06-25 18:00:21 +02:00
parent 0bd307bc7b
commit 2468d569b6

View File

@@ -17,9 +17,11 @@ Linux = bool('Linux' == platform.system())
Ubuntu = bool(Linux and 'Ubuntu' == platform.linux_distribution()[0])
if OSX or Ubuntu:
CTAGS = '/usr/bin/ctags'
CTAGS = 'ctags'
elif FreeBSD:
CTAGS = 'exctags'
else:
CTAGS = '/usr/bin/exuberant-ctags'
CTAGS = 'exuberant-ctags'
#
# scons tools