diff options
author | davidovski <david@davidovski.xyz> | 2022-03-01 21:25:54 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-03-01 21:25:54 +0000 |
commit | e8213fac46bfcb8068a883cb88b2bb1587f190f9 (patch) | |
tree | 8ec5946d18961404efb12700267e10cffffa6db7 /repo/util/openssh.xibuild | |
parent | 79c82d8fc0a4f6618429a0373bb832afd105543e (diff) |
made packages work with musl
Diffstat (limited to 'repo/util/openssh.xibuild')
-rw-r--r-- | repo/util/openssh.xibuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/repo/util/openssh.xibuild b/repo/util/openssh.xibuild index a9bc017..662fc23 100644 --- a/repo/util/openssh.xibuild +++ b/repo/util/openssh.xibuild @@ -21,12 +21,12 @@ build () { package () { make DESTDIR=$PKG_DEST install - install -v -m755 contrib/ssh-copy-id $PKG_DEST/usr/bin + install -m755 contrib/ssh-copy-id $PKG_DEST/usr/bin - install -v -m644 contrib/ssh-copy-id.1 \ + install -m644 contrib/ssh-copy-id.1 \ $PKG_DEST/usr/share/man/man1 - install -v -m755 -d $PKG_DEST/usr/share/doc/openssh-$PKG_VER - install -v -m644 INSTALL LICENCE OVERVIEW README* \ + install -m755 -d $PKG_DEST/usr/share/doc/openssh-$PKG_VER + install -m644 INSTALL LICENCE OVERVIEW README* \ $PKG_DEST/usr/share/doc/openssh-$PKG_VER } |