8000 Merge pull request #3290 from jepler/quiet-build-messages · ricardoquesada/circuitpython@6ebcf5b · GitHub
[go: up one dir, main page]

Skip to content

Commit 6ebcf5b

Browse files
authored
Merge pull request adafruit#3290 from jepler/quiet-build-messages
Quiet build messages
2 parents 7604114 + b1d210c commit 6ebcf5b

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

mpy-cross/Makefile.static-raspbian

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ PROG=mpy-cross.static-raspbian
66
BUILD=build-static-raspbian
77
STATIC_BUILD=1
88

9+
$(shell if ! [ -d pitools ]; then echo 1>&2 "Fetching pi build tools. This may take awhile."; git clone -q https://github.com/raspberrypi/tools.git --depth=1 pitools; fi)
910
CROSS_COMPILE = pitools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin/arm-linux-gnueabihf-
1011
include mpy-cross.mk
11-
12-
$(shell [ -d pitools ] || git clone --progress --verbose https://github.com/raspberrypi/tools.git --depth=1 pitools)

py/makeqstrdata.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,6 @@ def compress(encoding_table, decompressed, encoded_length_bits, len_translation_
259259
current_bit -= 1
260260
if current_bit != 7:
261261
current_byte += 1
262-
if current_byte > len(decompressed):
263-
print("Note: compression increased length", repr(decompressed), len(decompressed), current_byte, file=sys.stderr)
264262
return enc[:current_byte]
265263

266264
def qstr_escape(qst):

tools/gen_display_resources.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ def _load_row(self, y, row):
6161
# Get each glyph.
6262
for c in set(all_characters):
6363
if ord(c) not in f._glyphs:
64-
print("Font missing character:", c, ord(c))
6564
filtered_characters = filtered_characters.replace(c, "")
6665
continue
6766
g = f.get_glyph(ord(c))

0 commit comments

Comments
 (0)
0