Skip to content

Commit

Permalink
fix spurious spaces instead of tabs in wscript
Browse files Browse the repository at this point in the history
  • Loading branch information
nettings committed Nov 22, 2021
1 parent 1c02cfe commit 3866928
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wscript
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def options(opt):

def configure(cnf):
cnf.env.libs = ['GPIOD', 'PTHREAD']
cnf.env.objs = ['parse_cmdline', 'gpiod_process', 'stdout_process', 'stdout_cmdline']
cnf.env.objs = ['parse_cmdline', 'gpiod_process', 'stdout_process', 'stdout_cmdline']
cnf.load('compiler_c',
cache = True)
cnf.check(
Expand All @@ -42,7 +42,7 @@ def configure(cnf):
lib = 'pthread',
uselib_store = 'PTHREAD',
mandatory = True)
cnf.check(
cnf.check(
header_name = 'pthread.h',
mandatory = True)
if not cnf.options.nojack:
Expand Down

0 comments on commit 3866928

Please sign in to comment.