Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make: fix make output when QUIET=0 #5225

Merged
merged 2 commits into from
Apr 1, 2016
Merged

Conversation

toonst
Copy link
Member

@toonst toonst commented Apr 1, 2016

When running make with QUIET=0, some unnecessary and confusing output is given. This PR hides that output.

@@ -317,16 +317,16 @@ distclean:
-@rm -rf $(BINDIRBASE)

flash: all
$(AD)command -v $(FLASHER) >/dev/null 2>&1 || \
@$(AD)command -v $(FLASHER) >/dev/null 2>&1 || \
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think @$(AD) doesn't make much sense, if this output should always be prevented, just use @command. ($(AD) is either set to "@" (if QUIET == 1) or unset.)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right. Is fixed now.

@OlegHahm OlegHahm added Type: bug The issue reports a bug / The PR fixes a bug (including spelling errors) Area: build system Area: Build system Impact: minor The PR is small in size and might only require a quick look of a knowledgeable reviewer labels Apr 1, 2016
@OlegHahm OlegHahm added this to the Release 2016.04 milestone Apr 1, 2016
Toon Stegen added 2 commits April 1, 2016 12:15
When invoking make with QUIET=0 these test are printed to stdout, which
could be confusing.
Remove space at begginning or error output line.
@cgundogan
Copy link
Member

ACK

@cgundogan cgundogan added the CI: ready for build If set, CI server will compile all applications for all available boards for the labeled PR label Apr 1, 2016
@cgundogan cgundogan merged commit a74a61b into RIOT-OS:master Apr 1, 2016
@toonst toonst deleted the fix_make_prints branch April 1, 2016 11:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area: build system Area: Build system CI: ready for build If set, CI server will compile all applications for all available boards for the labeled PR Impact: minor The PR is small in size and might only require a quick look of a knowledgeable reviewer Type: bug The issue reports a bug / The PR fixes a bug (including spelling errors)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants