14 lines
237 B
Bash
Executable file
14 lines
237 B
Bash
Executable file
#!/bin/bash
|
|
git clone https://github.com/linux-pam/linux-pam.git
|
|
|
|
set -e
|
|
cd linux-pam
|
|
git checkout v1.5.2
|
|
|
|
./autogen.sh --host="$xHOST" --prefix="$PREFIX"
|
|
|
|
|
|
./configure --host="$xHOST" --prefix="$PREFIX"
|
|
make clean
|
|
make
|
|
#make install
|