File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,31 +31,15 @@ PROC_DIR=${BUILD_HOME%/*/*}
3131make -j4
3232
3333if [ $? -eq 0 ]; then
34- sudo ln -s -f $BUILD_HOME /build/open-ephys /usr/bin/.
34+ sudo ln -s -f $BUILD_HOME /build/open-ephys.so /usr/bin/open-ephys
3535 echo " -----> GUI compile successful."
3636else
3737 echo " -----> GUI compile failed."
3838 exit
3939fi
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
6044if [ $? -eq 0 ]; then
6145 echo " -----> Plugin installation sucessful."
You can’t perform that action at this time.
0 commit comments