Blame view

buildroot/buildroot-2016.08.1/package/python/014-abort-on-failed-modules.patch 670 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  Abort on failed module build
  
  When building a Python module fails, the setup.py script currently
  doesn't exit with an error, and simply continues. This is not a really
  nice behavior, so this patch changes setup.py to abort with an error,
  so that the build issue is clearly noticeable.
  
  Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
  
  Index: b/setup.py
  ===================================================================
  --- a/setup.py
  +++ b/setup.py
  @@ -283,6 +283,7 @@
               print "Failed to build these modules:"
               print_three_column(failed)
               print
  +            sys.exit(1)
   
       def build_extension(self, ext):