debian/templates/post-install.in: Fix.

svn path=/dists/trunk/linux-2.6/; revision=4383
This commit is contained in:
Bastian Blank 2005-10-10 17:33:50 +00:00
parent 1464c4fc11
commit 0f284776dd
1 changed files with 2 additions and 2 deletions

View File

@ -85,10 +85,10 @@ ln -sf asm-${arch} $dir/include/asm
find include/asm-$arch -mindepth 1 -maxdepth 1 \
\( -type f -a ! -links 2 -o ! -type f \) \
-printf "../../../linux-headers-$prefix/%p\n" |
xargs ln -s --target-directory=$dir/include/asm-$arch
xargs --no-run-if-empty ln -s --target-directory=$dir/include/asm-$arch
find include/asm-$arch -mindepth 1 -maxdepth 1 \
-type f -links 2 |
xargs -r ln -f --target-directory=$dir/include/asm-$arch
xargs --no-run-if-empty ln -f --target-directory=$dir/include/asm-$arch
for i in include/asm-*
do
case ${i#include/asm-} in