9 lines
92 B
Bash
Executable File
9 lines
92 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
for file in *.patch
|
|
do patch -p1 < $file
|
|
done
|
|
|
|
make
|
|
make DESTDIR="$1" install
|