Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mkimage-profiles
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
mkimage-profiles
Commits
5c49535c
Commit
5c49535c
authored
Oct 09, 2015
by
Michael Shigorin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build.mk: get rid of GREP_OPTIONS
It was superfluous in the first place indeed, and new grep(1) considers the option deprecated.
parent
e37f5e13
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
build.mk
lib/build.mk
+4
-4
No files found.
lib/build.mk
View file @
5c49535c
...
...
@@ -66,8 +66,8 @@ build-image: profile/populate
tail -n $(MAX_LINES) "$(BUILDLOG)" $(SHORTEN) \
| if [ -z "$(QUIET)" ]; then \
echo "$(TIME) done $$DURATION"; \
GREP_COLOR="$(ANSI_OK)"
GREP_OPTIONS="--color=auto"
\
grep '^\*\* image: .*$$' ||:; \
GREP_COLOR="$(ANSI_OK)" \
grep
--color=auto
'^\*\* image: .*$$' ||:; \
else \
echo -n "$(TIME) $$DURATION "; \
sed -rn 's/^\*\* image: (.*)$$/\1/p'; \
...
...
@@ -85,8 +85,8 @@ build-image: profile/populate
echo "$(TIME) (you might want to rerun with DEBUG=1)"; \
fi; \
tail -n $(MAX_LINES) "$(BUILDLOG)" \
| GREP_COLOR="$(ANSI_FAIL)"
GREP_OPTIONS="--color=auto"
\
egrep -m "$(MAX_ERRORS)" "$(GOTCHA)"; \
| GREP_COLOR="$(ANSI_FAIL)" \
egrep -
-color=auto -
m "$(MAX_ERRORS)" "$(GOTCHA)"; \
df -P $(BUILDDIR) | awk 'END { if ($$4 < $(LOWSPACE)) \
{ print "NB: low space on "$$6" ("$$5" used)"}}'; \
fi; \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment