mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-08-15 01:32:27 +00:00
* Fix a wrong path in the _lldb.so Python symlink
* Remove the embedded copy of libjs-jquery (Closes: #701087)
This commit is contained in:
parent
c45058a13e
commit
3444c14c9c
3
debian/changelog
vendored
3
debian/changelog
vendored
@ -1,6 +1,8 @@
|
||||
llvm-toolchain-3.2 (1:3.2repack-1~exp3) UNRELEASED; urgency=low
|
||||
|
||||
* Fix some issues relative to the epoch change
|
||||
* Fix a wrong path in the _lldb.so Python symlink
|
||||
* Remove the embedded copy of libjs-jquery (Closes: #701087)
|
||||
|
||||
-- Sylvestre Ledru <sylvestre@debian.org> Sun, 17 Feb 2013 12:05:15 +0100
|
||||
|
||||
@ -32,6 +34,5 @@ llvm-toolchain-3.2 (3.2repack-1~exp1) experimental; urgency=low
|
||||
* Add a script pollycc which will call clang with the right arguments.
|
||||
* Use __builtin___clear_cache on ARM to fix a clang bug.
|
||||
Thanks to Matthias Klose.
|
||||
* Enable the r600 experimental backend for mesa 9.1.
|
||||
|
||||
-- Sylvestre Ledru <sylvestre@debian.org> Sat, 09 Feb 2013 12:14:10 +0100
|
||||
|
2
debian/control
vendored
2
debian/control
vendored
@ -380,7 +380,7 @@ Description: Low-Level Virtual Machine (LLVM), bindings for OCaml
|
||||
Package: llvm-3.2-doc
|
||||
Section: doc
|
||||
Architecture: all
|
||||
Depends: ${misc:Depends}
|
||||
Depends: ${misc:Depends}, libjs-jquery
|
||||
Description: Low-Level Virtual Machine (LLVM), documentation
|
||||
The Low-Level Virtual Machine (LLVM) is a collection of libraries and
|
||||
tools that make it easy to build compilers, optimizers, Just-In-Time
|
||||
|
1
debian/lldb-3.2.links.in
vendored
1
debian/lldb-3.2.links.in
vendored
@ -1 +1,2 @@
|
||||
usr/lib/@DEB_HOST_MULTIARCH@/liblldb.so.1 usr/lib/@DEB_HOST_MULTIARCH@/liblldb.so
|
||||
usr/lib/@DEB_HOST_MULTIARCH@/liblldb.so usr/lib/python2.7/dist-packages/lldb/_lldb.so
|
||||
|
6
debian/rules
vendored
6
debian/rules
vendored
@ -136,6 +136,12 @@ override_dh_auto_install:
|
||||
# Remove some license files
|
||||
rm $(CURDIR)/debian/tmp/usr/lib/llvm-$(LLVM_VERSION)/include/llvm/Support/LICENSE.TXT
|
||||
|
||||
# Managed in lldb-X.Y.links.in
|
||||
rm -f build-llvm/Release/lib/python*/site-packages/lldb/_lldb.so
|
||||
|
||||
# Remove the copy of jquery. See bug #701087
|
||||
cd ./docs/_build/html/_static/ && rm -f jquery.js && ln -s /usr/share/javascript/jquery/jquery.js
|
||||
|
||||
.PHONY: override_dh_strip
|
||||
override_dh_strip:
|
||||
dh_strip -p libclang$(SONAME_EXT) --dbg-package=libclang$(SONAME_EXT)-dbg
|
||||
|
Loading…
Reference in New Issue
Block a user