mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 03:26:31 +01:00
13 lines
180 B
Bash
13 lines
180 B
Bash
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
cp ../grep-2.4.mk Makefile
|
|
/after/bin/make
|
|
|
|
# Install
|
|
/after/bin/cp grep /after/bin/grep
|
|
/after/bin/chmod 755 /after/bin/grep
|
|
|
|
# Test
|
|
/after/bin/grep --version
|