OLD | NEW |
1 #!/usr/bin/make -f | 1 #!/usr/bin/make -f |
2 | 2 |
3 # Needed for dpkg-shlibdeps to be able to find the libraries we ship with so as | 3 # Needed for dpkg-shlibdeps to be able to find the libraries we ship with so as |
4 # to properly calculate our shared library dependencies. | 4 # to properly calculate our shared library dependencies. |
5 export LD_LIBRARY_PATH=$(shell echo $$LD_LIBRARY_PATH:$$PWD) | 5 export LD_LIBRARY_PATH=$(shell echo $$LD_LIBRARY_PATH:$$PWD) |
6 | 6 |
7 include /usr/share/cdbs/1/rules/debhelper.mk | 7 include /usr/share/cdbs/1/rules/debhelper.mk |
8 | 8 |
| 9 DEB_DH_STRIP_ARGS=--dbg-package=google-o3d-dbgsym |
| 10 |
9 # For the 32-bit package, shlibdeps may not be able to find the three dependent | 11 # For the 32-bit package, shlibdeps may not be able to find the three dependent |
10 # libraries because they aren't included in our package and we don't list them | 12 # libraries because they aren't included in our package and we don't list them |
11 # as a build dependency (because we can't, since on a 64-bit system that would | 13 # as a build dependency (because we can't, since on a 64-bit system that would |
12 # be resolved with the 64-bit packages). So, we suppress errors for this case. | 14 # be resolved with the 64-bit packages). So, we suppress errors for this case. |
13 DEB_DH_SHLIBDEPS_ARGS_ALL = -- --ignore-missing-info | 15 DEB_DH_SHLIBDEPS_ARGS_ALL = -- --ignore-missing-info |
OLD | NEW |