diff options
author | davidovski <david@davidovski.xyz> | 2022-03-29 22:30:13 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-03-29 22:30:13 +0100 |
commit | 14a1fee0a54d94f0f57f50d2532849f3c2383a15 (patch) | |
tree | a62d365540ad7c90618496bf7e2382107b579c83 /repo/system/sbase.xibuild | |
parent | 19b9a12a93a45cc02b31de9b40c45029fbf3c569 (diff) |
fixed dracut to work, and can boot
Diffstat (limited to 'repo/system/sbase.xibuild')
-rw-r--r-- | repo/system/sbase.xibuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/repo/system/sbase.xibuild b/repo/system/sbase.xibuild index a101bb9..e4a36cd 100644 --- a/repo/system/sbase.xibuild +++ b/repo/system/sbase.xibuild @@ -29,8 +29,8 @@ package () { make PREFIX=/usr DESTDIR=$PKG_DEST install # these are provided by other utils - for p in tar sed find xargs; do - rm $PKG_DEST/usr/bin/$p - rm $PKG_DEST/usr/share/man/man1/$p.1 + for p in tar sed find xargs grep; do + mv $PKG_DEST/usr/bin/$p $PKG_DEST/usr/bin/s$p + mv $PKG_DEST/usr/share/man/man1/$p.1 $PKG_DEST/usr/share/man/man1/s$p.1 done } |