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 |
| 9 # Workaround for Debian bug #364436 |
| 10 DEB_DH_MAKESHLIBS_ARGS=-n |
OLD | NEW |