Skip to content
Snippets Groups Projects
Commit 64fd6a0f authored by Ludovico de Nittis's avatar Ludovico de Nittis
Browse files

Unconditionally create /usr/lib64 and symlink /usr/lib64/locale


With gconv modules we will need to ensure to have the `/usr/lib64`
folder. So we can just unconditionally create it here instead.

Signed-off-by: default avatarLudovico de Nittis <ludovico.denittis@collabora.com>
parent 2407ef44
No related branches found
No related tags found
1 merge request!10Ensure gconv modules directories
......@@ -42,10 +42,8 @@ post_script: |
install -d -m755 /usr/lib32
ln -s ../lib/locale /usr/lib32/locale
# Biarch OSs that are the other way round might conceivably look here
if [ -d /lib64 ]; then
install -d -m755 /usr/lib64
ln -s ../lib/locale /usr/lib64/locale
fi
install -d -m755 /usr/lib64
ln -s ../lib/locale /usr/lib64/locale
# Ensure that the libdrm folder is present
install -d -m755 /usr/share/libdrm
# Arch Linux uses a non-standard ELF interpreter for some binaries in the
......
......@@ -49,10 +49,8 @@ post_script: |
install -d -m755 /usr/lib32
ln -s ../lib/locale /usr/lib32/locale
# Biarch OSs that are the other way round might conceivably look here
if [ -d /lib64 ]; then
install -d -m755 /usr/lib64
ln -s ../lib/locale /usr/lib64/locale
fi
install -d -m755 /usr/lib64
ln -s ../lib/locale /usr/lib64/locale
# Ensure that the libdrm folder is present
install -d -m755 /usr/share/libdrm
# Arch Linux uses a non-standard ELF interpreter for some binaries in the
......
......@@ -46,10 +46,8 @@ post_script: |
install -d -m755 /usr/lib32
ln -s ../lib/locale /usr/lib32/locale
# Biarch OSs that are the other way round might conceivably look here
if [ -d /lib64 ]; then
install -d -m755 /usr/lib64
ln -s ../lib/locale /usr/lib64/locale
fi
install -d -m755 /usr/lib64
ln -s ../lib/locale /usr/lib64/locale
# Ensure that the libdrm folder is present
install -d -m755 /usr/share/libdrm
# Arch Linux uses a non-standard ELF interpreter for some binaries in the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment