this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Clean Up Scripts

+5 -3
+4 -2
tools/debian/make-shlibdeps
··· 2 2 3 3 set -e 4 4 5 + DEB_PACKAGE='darling' 6 + 5 7 ARGS_FILE="$(mktemp)" 6 8 7 - find debian/darling -type f -exec tools/debian/make-shlibdeps-file "${ARGS_FILE}" {} \; 9 + find "debian/${DEB_PACKAGE}" -type f -exec tools/debian/make-shlibdeps-file "${ARGS_FILE}" {} \; 8 10 9 11 OUT="$(mktemp)" 10 12 clang -shared -o "${OUT}"$(cat ${ARGS_FILE}) 11 - dpkg-shlibdeps -Tdebian/darling.substvars -p"macho" -e"${OUT}" > /dev/null 2>&1 13 + dpkg-shlibdeps -T"debian/${DEB_PACKAGE}.substvars" -p"macho" -e"${OUT}" > /dev/null 2>&1 12 14 13 15 rm -f "${ARGS_FILE}" 14 16 rm -f "${OUT}"
+1 -1
tools/debian/make-shlibdeps-file
··· 5 5 PATH="$(pwd)/debbuild/src/buildtools:${PATH}" 6 6 7 7 if ! LIBS="$(elfdep "$2" 2>&1)"; then 8 - exit 1 8 + exit 9 9 fi 10 10 11 11 ARGS=''