rttlua "Warning: Component type name already used: overriding."

I am getting a lua deployment-time warning that I do not understand:

$ rttlua -i test_load_everything.lua
Real-time memory: 517904 bytes free of 524288 allocated.
OROCOS RTTLua 1.0-beta5 / Lua 5.1.4 (gnulinux)
0.090 [ Warning][DeploymentComponent::import] Component type name
OCL::MasterTimer already used: overriding.

Here is the layout of the subdirectory where I built masterTimer.so:

$ tree masterTimer/
masterTimer/
??? masterTimer.cpp
??? masterTimer.hpp
??? masterTimer.o
??? masterTimer.so
??? readme.txt
??? test.ops
??? test.sh
??? Tupfile

Here were the two build commands I used to generate masterTimer.so:

1) [8.165s] components/main/masterTimer: clang++ -Wall -fPIC
-fvisibility=hidden -fvisibility-inlines-hidden -DRTT_COMPONENT
-I../../../pythonCodegen `pkg-config --cflags orocos-rtt-gnulinux
orocos-ocl-gnulinux` -c masterTimer.cpp -o masterTimer.o
2) [1.316s] components/main/masterTimer: clang++ -shared -o masterTimer.so
masterTimer.o `pkg-config --libs orocos-rtt-gnulinux orocos-ocl-gnulinux`
[ ] 100%

Here is my .lua deployment script:

require("rttlib")
rtt.setLogLevel("Warning")
rttlib.color = true
tc = rtt.getTC()
deployer = tc:getPeer("Deployer")

rttlua "Warning: Component type name already used: overriding."

On Thu, Apr 4, 2013 at 7:13 PM, Andrew Wagner
<andrew [dot] wagner [..] ...> wrote:
> I am getting a lua deployment-time warning that I do not understand:
>
> $ rttlua -i test_load_everything.lua
> Real-time memory: 517904 bytes free of 524288 allocated.
> OROCOS RTTLua 1.0-beta5 / Lua 5.1.4 (gnulinux)
> 0.090 [ Warning][DeploymentComponent::import] Component type name
> OCL::MasterTimer already used: overriding.
>
> Here is the layout of the subdirectory where I built masterTimer.so:
>
> $ tree masterTimer/
> masterTimer/
> ??? masterTimer.cpp
> ??? masterTimer.hpp
> ??? masterTimer.o
> ??? masterTimer.so
> ??? readme.txt
> ??? test.ops
> ??? test.sh
> ??? Tupfile
>
> Here were the two build commands I used to generate masterTimer.so:
>
> 1) [8.165s] components/main/masterTimer: clang++ -Wall -fPIC
> -fvisibility=hidden -fvisibility-inlines-hidden -DRTT_COMPONENT
> -I../../../pythonCodegen `pkg-config --cflags orocos-rtt-gnulinux
> orocos-ocl-gnulinux` -c masterTimer.cpp -o masterTimer.o
> 2) [1.316s] components/main/masterTimer: clang++ -shared -o masterTimer.so
> masterTimer.o `pkg-config --libs orocos-rtt-gnulinux orocos-ocl-gnulinux`
> [ ] 100%
>
> Here is my .lua deployment script:
>
> require("rttlib")
> rtt.setLogLevel("Warning")
> rttlib.color = true
> tc = rtt.getTC()
> deployer = tc:getPeer("Deployer")