Skip to content

Commit

Permalink
Unknow system -c install fix
Browse files Browse the repository at this point in the history
unknown systems with apt-get were still attempting to install OpenCV 2.4.8 pre-packaged.
Ubuntu and Arch Linux now fully build FireSight and OpenCV 2.4.13 without any problems, aside from arch having unknown package manager. But the user is directed to manually install these required packages.
  • Loading branch information
watbulb committed Aug 24, 2016
1 parent 942220d commit e500eaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ elif [[ "$(grep a22082 /proc/cpuinfo)" == *a22082* ]]; then
echo -e "\n${GREEN}SUCCESS${NC} : OPENCV 2.4 INSTALLED\n"
fi

elif [ "$(type -p apt-get)" = "" ]; then
elif [ "$(type -p apt-get)" = "" ] || [[ "$(type -p apt-get)" == *apt-get* ]];then
echo "-------------------------------------------------"
echo -e "${YELLOW}SYSTEM${NC} : Unknown"
echo "-------------------------------------------------"
Expand Down

0 comments on commit e500eaa

Please sign in to comment.