blob: 9694ab2a0a9136c7cbbcd6d086290bf8aef0b6dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
set -e
#DEBHELPER#
BASEDIR=/usr/lib/klibc/include/
# these are shipped symlinks to linux-libc-dev and not directories
if [ -d ${BASEDIR}linux ] || [ -d ${BASEDIR}asm ]; then
rm -rf ${BASEDIR}linux ${BASEDIR}asm*
fi
|