diff options
author | Cem Keylan <cem@ckyln.com> | 2020-04-11 20:26:00 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-04-11 20:26:00 +0300 |
commit | b0cee9a1d74a927d81582d317ddc14de9ffe3081 (patch) | |
tree | d527f3d013a7988de2087fdc6dcf5b7d09a1dfb0 /community/9base/build | |
parent | 2bbb3574feb1a6ea8e8a3f3be4c1425672d6e8ea (diff) | |
download | repository-b0cee9a1d74a927d81582d317ddc14de9ffe3081.tar.gz |
9base: multiple changes
* Switch source to git
* Install to /usr
* Remove post-install
Diffstat (limited to 'community/9base/build')
-rwxr-xr-x | community/9base/build | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/community/9base/build b/community/9base/build index cdc80175..88032b7b 100755 --- a/community/9base/build +++ b/community/9base/build @@ -1,8 +1,4 @@ #!/bin/sh -e -make -make DESTDIR="$1" install - -mkdir -p "$1/usr/bin" -ln -s /usr/local/plan9/bin/mk "$1/usr/bin/mk" -ln -s /usr/local/plan9/bin/rc "$1/usr/bin/rc" +make PREFIX=/usr +make PREFIX=/usr DESTDIR="$1" install |