author | nipkow |
Wed, 16 Oct 2013 21:45:15 +0200 | |
changeset 54122 | 0941a2024569 |
parent 52672 | 8de4235298cb |
child 60985 | 9d7ba380223c |
permissions | -rwxr-xr-x |
50807 | 1 |
#!/bin/dash |
2 |
||
52672 | 3 |
export PATH=/bin |
50807 | 4 |
|
5 |
FILE_LIST="$(mktemp)" |
|
6 |
||
52500 | 7 |
for DIR in contrib/polyml* |
50807 | 8 |
do |
50892
9a7d81d66d09
include /isabelle/rebaseall in autorebaseall, which is run after installation of further packages;
wenzelm
parents:
50888
diff
changeset
|
9 |
find "$DIR" -name "*.dll" >> "$FILE_LIST" |
50807 | 10 |
done |
11 |
||
12 |
dash /bin/rebaseall -T "$FILE_LIST" |
|
13 |
||
14 |
rm -f "$FILE_LIST" |
|
50978 | 15 |