mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-06-14 17:54:50 +00:00
try to fix ubuntu trusty for real
This commit is contained in:
parent
5a08cfe56c
commit
27d2c87d8e
13
debian/rules
vendored
13
debian/rules
vendored
@ -235,13 +235,6 @@ endif
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
OLD_DH_DISTRO := trusty
|
|
||||||
ifneq (,$(filter $(DISTRO),$(OLD_DH_DISTRO)))
|
|
||||||
# DH doesn't support the [power ...] in install
|
|
||||||
# fails with cp: cannot stat 'debian/tmp/[!powerpc': No such file or directory
|
|
||||||
$(shell sed -e "s|\[\!powerpc \!powerpcspe\] ||g" debian/llvm-X.Y-dev.install.in)
|
|
||||||
endif
|
|
||||||
|
|
||||||
DH_OPTIONS=
|
DH_OPTIONS=
|
||||||
OCAML_ENABLE= no
|
OCAML_ENABLE= no
|
||||||
OCAML_ARCHS := amd64 arm64 armhf i386 ppc64el s390x
|
OCAML_ARCHS := amd64 arm64 armhf i386 ppc64el s390x
|
||||||
@ -290,6 +283,12 @@ preconfigure:
|
|||||||
# Make install file executable for dh-exec
|
# Make install file executable for dh-exec
|
||||||
chmod +x debian/llvm-$(LLVM_VERSION)-dev.install
|
chmod +x debian/llvm-$(LLVM_VERSION)-dev.install
|
||||||
|
|
||||||
|
# DH doesn't support the [power ...] in install on Ubuntu trusty
|
||||||
|
# fails with cp: cannot stat 'debian/tmp/[!powerpc': No such file or directory
|
||||||
|
if test "$(DISTRO)" = "trusty"; then \
|
||||||
|
sed -i -e "s|\[\!powerpc \!powerpcspe\] ||g" debian/llvm-$(LLVM_VERSION)-dev.install; \
|
||||||
|
fi
|
||||||
|
|
||||||
# Override this two targets. They are trying to manage the .in conversion for me
|
# Override this two targets. They are trying to manage the .in conversion for me
|
||||||
override_dh_ocamlinit:
|
override_dh_ocamlinit:
|
||||||
override_dh_ocamlclean:
|
override_dh_ocamlclean:
|
||||||
|
Loading…
Reference in New Issue
Block a user