mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-05 16:03:37 +02:00
Merge branch 'patch-1' of https://github.com/randy1/calibre
This commit is contained in:
commit
134b4f5982
1 changed files with 2 additions and 1 deletions
|
|
@ -13,7 +13,8 @@
|
|||
isosx = 'darwin' in sys.platform
|
||||
isfreebsd = 'freebsd' in sys.platform
|
||||
isnetbsd = 'netbsd' in sys.platform
|
||||
isbsd = isnetbsd or isfreebsd
|
||||
isdragonflybsd = 'dragonfly' in sys.platform
|
||||
isbsd = isnetbsd or isfreebsd or isdragonflybsd
|
||||
islinux = not isosx and not iswindows and not isbsd
|
||||
SRC = os.path.abspath('src')
|
||||
sys.path.insert(0, SRC)
|
||||
|
|
|
|||
Loading…
Reference in a new issue