OLD | NEW |
1 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # NOTE: This assumes that the following have already been defined: | 5 # NOTE: This assumes that the following have already been defined: |
6 # { ROOT, ARCH, CHOST, [BOARD_OVERLAY] } | 6 # { ROOT, ARCH, CHOST, [BOARD_OVERLAY] } |
7 | 7 |
8 # TODO: This will have to come from somewhere else when we support a 32-bit | 8 # TODO: This will have to come from somewhere else when we support a 32-bit |
9 # build host environment. | 9 # build host environment. |
10 CBUILD=x86_64-pc-linux-gnu | 10 CBUILD=x86_64-pc-linux-gnu |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 am_cv_python_pythondir="\${prefix}/lib/python2.6/site-packages" | 63 am_cv_python_pythondir="\${prefix}/lib/python2.6/site-packages" |
64 | 64 |
65 # the AC_FUNC_WAIT3 macro uses runtime-checks for the function, which | 65 # the AC_FUNC_WAIT3 macro uses runtime-checks for the function, which |
66 # doesn't work when cross-compiling; we know that our targets have it, | 66 # doesn't work when cross-compiling; we know that our targets have it, |
67 # so let's tell about it to autoconf. — Flameeyes | 67 # so let's tell about it to autoconf. — Flameeyes |
68 ac_cv_func_wait3_rusage=yes | 68 ac_cv_func_wait3_rusage=yes |
69 | 69 |
70 # Native language support is handled inside Chrome itself. | 70 # Native language support is handled inside Chrome itself. |
71 LINGUAS="en" | 71 LINGUAS="en" |
72 | 72 |
| 73 # avoid removing libltdl.la as it is required by some macro files |
| 74 INSTALL_MASK=" |
| 75 /usr/lib/lib[0-9]*.la |
| 76 /usr/lib/lib[a-k]*.la |
| 77 /usr/lib/lib[m-z]*.la |
| 78 /usr/lib/libl[0-9]*.la |
| 79 /usr/lib/libl[a-s]*.la |
| 80 /usr/lib/libl[u-z]*.la |
| 81 /usr/lib/liblt[0-9]*.la |
| 82 /usr/lib/liblt[a-c]*.la |
| 83 /usr/lib/liblt[e-z]*.la |
| 84 /usr/lib/libltd[0-9]*.la |
| 85 /usr/lib/libltd[a-k]*.la |
| 86 /usr/lib/libltd[m-z]*.la |
| 87 /usr/lib/libltdl[0-9]*.la |
| 88 /usr/lib/libltdl[a-z]*.la |
| 89 " |
| 90 |
73 # Allow the user to override or define additional settings. | 91 # Allow the user to override or define additional settings. |
74 source make.conf.user | 92 source make.conf.user |
OLD | NEW |