setup.py fix and update

- libssl dependency for Fedora
- typo in waiting for keypress
This commit is contained in:
Peter Šurda 2017-03-01 11:44:58 +01:00
parent af5cb08093
commit 636ae17cc0
Signed by untrusted user: PeterSurda
GPG Key ID: 0C5F50C0B5F37D87
1 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ packageName = {
compiling = {
"Debian": "build-essential libssl-dev",
"Ubuntu": "build-essential libssl-dev",
"Fedora": "gcc-c++ redhat-rpm-config python-devel",
"Fedora": "gcc-c++ redhat-rpm-config python-devel openssl-devel",
"openSUSE": "gcc-c++ libopenssl-devel python-devel",
}
@ -162,7 +162,7 @@ if __name__ == "__main__":
if detectPrereqs(True) != []:
print "Press Return to continue"
try:
nothing = raw_input
nothing = raw_input()
except NameError:
pass