1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Merge pull request #30 from cbrp/master

Quick hack for Fedora 16 detection
This commit is contained in:
James Booth 2012-08-17 08:17:05 -07:00
commit 5b0673b350

View File

@ -90,6 +90,12 @@ if [ $? -eq 0 ]; then
DIST=fedora DIST=fedora
fi fi
# quick hack check for Fedora 16
uname -a | grep --ignore-case fc16
if [ $? -eq 0 ]; then
DIST=fedora
fi
uname -a | grep --ignore-case ubuntu uname -a | grep --ignore-case ubuntu
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
DIST=ubuntu DIST=ubuntu