diff options
author | Jia Zhang <zhang.jia@linux.alibaba.com> | 2018-06-16 04:09:39 -0400 |
---|---|---|
committer | Jia Zhang <zhang.jia@linux.alibaba.com> | 2018-06-16 04:09:39 -0400 |
commit | 23d074cba75435ca99cd135ba97d94aaab8c4367 (patch) | |
tree | 5e67071be46029fcc1271355c7fa37e83cec8a57 | |
parent | de08228a0de497e9efd848470309bd5d76e691d7 (diff) | |
download | meta-secure-core-23d074cba75435ca99cd135ba97d94aaab8c4367.tar.gz |
tpm2-tss: code style cleanup
Replace tab with four spaces.
Signed-off-by: Jia Zhang <zhang.jia@linux.alibaba.com>
-rw-r--r-- | meta-tpm2/recipes-tpm/tpm2-tss/tpm2-tss_git.bb | 72 |
1 files changed, 36 insertions, 36 deletions
diff --git a/meta-tpm2/recipes-tpm/tpm2-tss/tpm2-tss_git.bb b/meta-tpm2/recipes-tpm/tpm2-tss/tpm2-tss_git.bb index 75825ff..eaeaec2 100644 --- a/meta-tpm2/recipes-tpm/tpm2-tss/tpm2-tss_git.bb +++ b/meta-tpm2/recipes-tpm/tpm2-tss/tpm2-tss_git.bb | |||
@@ -18,58 +18,58 @@ SRCREV = "${AUTOREV}" | |||
18 | S = "${WORKDIR}/${BPN}" | 18 | S = "${WORKDIR}/${BPN}" |
19 | 19 | ||
20 | do_configure_prepend () { | 20 | do_configure_prepend () { |
21 | # Execute the bootstrap script, to generate src_vars.mk. | 21 | # Execute the bootstrap script, to generate src_vars.mk. |
22 | # The actual autotools bootstrapping is done by the normal | 22 | # The actual autotools bootstrapping is done by the normal |
23 | # do_configure, which does a better job with it (for example, | 23 | # do_configure, which does a better job with it (for example, |
24 | # it finds m4 macros also in the native sysroot). | 24 | # it finds m4 macros also in the native sysroot). |
25 | currentdir=$(pwd) | 25 | currentdir="$(pwd)" |
26 | cd ${S} | 26 | cd "${S}" |
27 | AUTORECONF=true ./bootstrap | 27 | AUTORECONF=true ./bootstrap |
28 | cd ${currentdir} | 28 | cd "${currentdir}" |
29 | } | 29 | } |
30 | 30 | ||
31 | PACKAGES = " \ | 31 | PACKAGES = " \ |
32 | libtss2-mu \ | 32 | libtss2-mu \ |
33 | libtss2-mu-dev \ | 33 | libtss2-mu-dev \ |
34 | libtss2-mu-staticdev \ | 34 | libtss2-mu-staticdev \ |
35 | libtss2-tcti-device \ | 35 | libtss2-tcti-device \ |
36 | libtss2-tcti-device-dev \ | 36 | libtss2-tcti-device-dev \ |
37 | libtss2-tcti-device-staticdev \ | 37 | libtss2-tcti-device-staticdev \ |
38 | libtss2-tcti-mssim \ | 38 | libtss2-tcti-mssim \ |
39 | libtss2-tcti-mssim-dev \ | 39 | libtss2-tcti-mssim-dev \ |
40 | libtss2-tcti-mssim-staticdev \ | 40 | libtss2-tcti-mssim-staticdev \ |
41 | libtss2 \ | 41 | libtss2 \ |
42 | libtss2-dev \ | 42 | libtss2-dev \ |
43 | libtss2-staticdev \ | 43 | libtss2-staticdev \ |
44 | ${PN} \ | 44 | ${PN} \ |
45 | ${PN}-doc \ | 45 | ${PN}-doc \ |
46 | ${PN}-dbg \ | 46 | ${PN}-dbg \ |
47 | " | 47 | " |
48 | 48 | ||
49 | FILES_libtss2-tcti-device = "${libdir}/libtss2-tcti-device.so.*" | 49 | FILES_libtss2-tcti-device = "${libdir}/libtss2-tcti-device.so.*" |
50 | FILES_libtss2-tcti-device-dev = " \ | 50 | FILES_libtss2-tcti-device-dev = " \ |
51 | ${includedir}/tss2/tss2_tcti_device.h \ | 51 | ${includedir}/tss2/tss2_tcti_device.h \ |
52 | ${libdir}/pkgconfig/tss2-tcti-device.pc \ | 52 | ${libdir}/pkgconfig/tss2-tcti-device.pc \ |
53 | ${libdir}/libtss2-tcti-device.so" | 53 | ${libdir}/libtss2-tcti-device.so" |
54 | FILES_libtss2-tcti-device-staticdev = "${libdir}/libtss2-tcti-device.*a" | 54 | FILES_libtss2-tcti-device-staticdev = "${libdir}/libtss2-tcti-device.*a" |
55 | 55 | ||
56 | FILES_libtss2-tcti-mssim = "${libdir}/libtss2-tcti-mssim.so.*" | 56 | FILES_libtss2-tcti-mssim = "${libdir}/libtss2-tcti-mssim.so.*" |
57 | FILES_libtss2-tcti-mssim-dev = " \ | 57 | FILES_libtss2-tcti-mssim-dev = " \ |
58 | ${includedir}/tss2/tss2_tcti_mssim.h \ | 58 | ${includedir}/tss2/tss2_tcti_mssim.h \ |
59 | ${libdir}/pkgconfig/tss2-tcti-mssim.pc \ | 59 | ${libdir}/pkgconfig/tss2-tcti-mssim.pc \ |
60 | ${libdir}/libtss2-tcti-mssim.so" | 60 | ${libdir}/libtss2-tcti-mssim.so" |
61 | FILES_libtss2-tcti-mssim-staticdev = "${libdir}/libtss2-tcti-mssim.*a" | 61 | FILES_libtss2-tcti-mssim-staticdev = "${libdir}/libtss2-tcti-mssim.*a" |
62 | 62 | ||
63 | FILES_libtss2-mu = "${libdir}/libtss2-mu.so.*" | 63 | FILES_libtss2-mu = "${libdir}/libtss2-mu.so.*" |
64 | FILES_libtss2-mu-dev = " \ | 64 | FILES_libtss2-mu-dev = " \ |
65 | ${includedir}/tss2/tss2_mu.h \ | 65 | ${includedir}/tss2/tss2_mu.h \ |
66 | ${libdir}/pkgconfig/tss2-mu.pc \ | 66 | ${libdir}/pkgconfig/tss2-mu.pc \ |
67 | ${libdir}/libtss2-mu.so" | 67 | ${libdir}/libtss2-mu.so" |
68 | FILES_libtss2-mu-staticdev = "${libdir}/libtss2-mu.*a" | 68 | FILES_libtss2-mu-staticdev = "${libdir}/libtss2-mu.*a" |
69 | 69 | ||
70 | FILES_libtss2 = "${libdir}/libtss2*so.*" | 70 | FILES_libtss2 = "${libdir}/libtss2*so.*" |
71 | FILES_libtss2-dev = " \ | 71 | FILES_libtss2-dev = " \ |
72 | ${includedir} \ | 72 | ${includedir} \ |
73 | ${libdir}/pkgconfig \ | 73 | ${libdir}/pkgconfig \ |
74 | ${libdir}/libtss2*so" | 74 | ${libdir}/libtss2*so" |
75 | FILES_libtss2-staticdev = "${libdir}/libtss*a" | 75 | FILES_libtss2-staticdev = "${libdir}/libtss*a" |