summaryrefslogtreecommitdiff
path: root/debian/ableton-link-dev.preinst
blob: dfd2000845130eb3cc2e6ec0a3ab3cbcf0230f21 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
set -e

# older versions of ableton-link-dev used symlinks,
# but now these are real files...
for f in /usr/share/cmake/AbletonLinkConfig
do
  test ! -h "$f" || rm "$f"
done

#DEBHELPER#