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/util/grep.xibuild | |
parent | 19b9a12a93a45cc02b31de9b40c45029fbf3c569 (diff) |
fixed dracut to work, and can boot
Diffstat (limited to 'repo/util/grep.xibuild')
-rw-r--r-- | repo/util/grep.xibuild | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/repo/util/grep.xibuild b/repo/util/grep.xibuild index e7689f9..52cd6f7 100644 --- a/repo/util/grep.xibuild +++ b/repo/util/grep.xibuild @@ -1,7 +1,7 @@ #!/bin/sh MAKEDEPS="grep make " -DEPS="musl pcre2" +DEPS="musl pcre" PKG_VER=3.7 SOURCE=https://ftp.gnu.org/gnu/grep/grep-$PKG_VER.tar.xz @@ -18,6 +18,5 @@ check () { package () { make DESTDIR=$PKG_DEST install - mv $PKG_DEST/bin/grep $PKG_DEST/bin/ggrep - + ln -s grep $PKG_DEST/bin/ggrep } |