You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env bash |
|
|
|
./configure --prefix=/usr |
|
|
|
make |
|
make html |
|
|
|
chown -R tester . |
|
su tester -c "PATH=$PATH make check" |
|
|
|
make install |
|
install -d -m755 /usr/share/doc/sed-4.9 |
|
install -m644 doc/sed.html /usr/share/doc/sed-4.9 |
|
|
|
|