File: fix-links

package info (click to toggle)
cross-toolchain-base 66
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 332 kB
  • sloc: perl: 1,259; makefile: 1,046; sh: 234; python: 43
file content (8 lines) | stat: -rwxr-xr-x 84 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
#!/bin/bash

cd debian/tmp/usr/lib/
for f in $1/*
do
	ln -s $f `basename $f`;
done