9 lines
135 B
Bash
Executable file
9 lines
135 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
DEB_HOST_MULTIARCH="$(dpkg-architecture -qDEB_HOST_MULTIARCH)"
|
|
|
|
cat << EOF
|
|
usr/lib/${DEB_HOST_MULTIARCH}/*.so.*
|
|
EOF
|