diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2011-05-23 12:18:07 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2011-05-23 12:18:07 +0100 |
| commit | e07b068097786ffcd59e48f38c80b0c9d849853e (patch) | |
| tree | 0abf33e1eac4f0b28045178fbfa518671201f37e | |
| parent | 265142455a7f8e4bb09aee18f57b5beedae68afd (diff) | |
| download | rabbitmq-server-git-e07b068097786ffcd59e48f38c80b0c9d849853e.tar.gz | |
Exclude mochiweb from the xref check.
| -rw-r--r-- | src/rabbit_prelaunch.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rabbit_prelaunch.erl b/src/rabbit_prelaunch.erl index 2512a60280..8ae86848e4 100644 --- a/src/rabbit_prelaunch.erl +++ b/src/rabbit_prelaunch.erl @@ -71,7 +71,9 @@ start() -> %% Compile the script ScriptFile = RootName ++ ".script", - case systools:make_script(RootName, [local, silent, exref]) of + %% We exclude mochiweb due to its optional use of fdsrv. + case systools:make_script(RootName, [local, silent, + {exref, AllApps -- [mochiweb]}]) of {ok, Module, Warnings} -> %% This gets lots of spurious no-source warnings when we %% have .ez files, so we want to supress them to prevent |
