Skip to content

Commit 65d1c4b

Browse files
Update linux setup.sh to use new Makefile
1 parent b4eddd8 commit 65d1c4b

1 file changed

Lines changed: 1 addition & 17 deletions

File tree

Builds/Linux/setup.sh

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -39,23 +39,7 @@ else
3939
fi
4040

4141
# Step 2: Compile plugins
42-
PLUGIN_SRC_DIR="${PROC_DIR}/Source/Processors"
43-
PLUGINS=`ls -d ${PLUGIN_SRC_DIR}/*`
44-
45-
cd $PLUGIN_SRC_DIR
46-
for PLUGIN in ${PLUGINS}
47-
do
48-
if [ -f $PLUGIN/Makefile ]; then
49-
cd $PLUGIN
50-
make clean
51-
make
52-
if [ $? -ne 0 ]; then
53-
echo "-----> Plugin compile failed."
54-
exit
55-
fi
56-
cd ..
57-
fi
58-
done
42+
make -j4 -f Makefile.plugins
5943

6044
if [ $? -eq 0 ]; then
6145
echo "-----> Plugin installation sucessful."

0 commit comments

Comments
 (0)