19 lines
244 B
Bash
19 lines
244 B
Bash
|
#!/bin/bash
|
||
|
# This script is called automatically during autobuild checkin
|
||
|
# and ensures that boost.spec is up-to-date
|
||
|
|
||
|
case $0 in
|
||
|
\./*)
|
||
|
here=$PWD
|
||
|
;;
|
||
|
*/*)
|
||
|
here=${0%/*}
|
||
|
;;
|
||
|
*)
|
||
|
here=$PWD
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
. ${here}/mkspec.sh
|
||
|
|