10 lines
154 B
Bash
10 lines
154 B
Bash
|
#!/bin/bash -x
|
||
|
|
||
|
EMAIL="himattmcwilliams@gmail.com"
|
||
|
NAME="Matt McWilliams"
|
||
|
|
||
|
cd unix/
|
||
|
sh prebuild.sh
|
||
|
cd ../
|
||
|
./configure COMPILED_BY="$NAME <$EMAIL>"
|
||
|
make -j
|