| author | wenzelm |
| Fri, 21 Mar 2014 15:12:03 +0100 | |
| changeset 56244 | 3298b7a2795a |
| 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 |