diff options
author | Juergen Daubert <jue@jue.li> | 2015-07-26 19:04:46 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2015-07-26 19:04:46 +0200 |
commit | 294a1832980a6ea0036b4b9727d036027663c259 (patch) | |
tree | 954347e429e191413d1a17bd239d2792ab0b076d /time | |
parent | 8d26cfc0a882b46b1ad826554d71e797f755f42a (diff) | |
download | core-294a1832980a6ea0036b4b9727d036027663c259.tar.gz core-294a1832980a6ea0036b4b9727d036027663c259.tar.xz |
time: use install instead of mkdir to create directories in $PKG
Diffstat (limited to 'time')
-rw-r--r-- | time/Pkgfile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/time/Pkgfile b/time/Pkgfile index 54eda4b0..988afbfb 100644 --- a/time/Pkgfile +++ b/time/Pkgfile @@ -14,6 +14,5 @@ build() { make make prefix=$PKG/usr install rm -rf $PKG/usr/info - mkdir -p $PKG/usr/share/man/man1 - cp ../$name.1 $PKG/usr/share/man/man1 + install -D -m 0644 $SRC/$name.1 $PKG/usr/share/man/man1/$name.1 } |