diff options
author | Cem Keylan <cem@ckyln.com> | 2020-01-29 00:16:24 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-01-29 00:16:24 +0300 |
commit | 563f1bd437370ca42b1114c1a9990c1c234e6408 (patch) | |
tree | 9bc8d2699f7ebae160c152162d15ad90c446ed62 /core | |
parent | 0fbb912f59bef4907ee270b5d7480960dbbea55e (diff) | |
download | repository-563f1bd437370ca42b1114c1a9990c1c234e6408.tar.gz |
openresolv: use /usr/bin
Diffstat (limited to 'core')
-rwxr-xr-x | core/openresolv/build | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/openresolv/build b/core/openresolv/build new file mode 100755 index 00000000..0e9165ba --- /dev/null +++ b/core/openresolv/build @@ -0,0 +1,8 @@ +#!/bin/sh -e + +./configure \ + --prefix=/usr \ + --sbindir=/usr/bin + +make +make DESTDIR="$1" install |