Skip to content

Commit eedf4f1

Browse files
committed
get rid of more useless output in the build
1 parent 79bf760 commit eedf4f1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/devtools/gendbg.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ if [ "$OUTFILEDIR" != "$INFILEDIR" ]; then
3636
OUTFILE=${OUTFILEDIR}/${OUTFILE}
3737
fi
3838

39-
pushd "$INFILEDIR"
39+
pushd "$INFILEDIR" > /dev/null
4040
$OBJCOPY "$INFILE" "$OUTFILE"
4141
$OBJCOPY --add-gnu-debuglink="$OUTFILE" "$INFILE"
42-
popd
42+
popd > /dev/null
4343

4444

src/devtools/makefile_base_posix.mak

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ else
423423
endif
424424

425425
ifneq "$(origin VALVE_NO_AUTO_P4)" "undefined"
426-
P4_EDIT_START = chmod -R +w
426+
P4_EDIT_START = chmod -fR +w
427427
P4_EDIT_END = || true
428428
P4_REVERT_START = true
429429
P4_REVERT_END =
@@ -559,9 +559,9 @@ $(GAMEOUTPUTFILE): $(OUTPUTFILE)
559559
$(QUIET_PREFIX) -$(P4_EDIT_START) $(GAMEOUTPUTFILE) $(P4_EDIT_END);
560560
$(QUIET_PREFIX) -mkdir -p `dirname $(GAMEOUTPUTFILE)` > /dev/null;
561561
$(QUIET_PREFIX) rm -f $(GAMEOUTPUTFILE) $(QUIET_ECHO_POSTFIX);
562-
$(QUIET_PREFIX) cp -v $(OUTPUTFILE) $(GAMEOUTPUTFILE) $(QUIET_ECHO_POSTFIX);
562+
$(QUIET_PREFIX) cp $(OUTPUTFILE) $(GAMEOUTPUTFILE) $(QUIET_ECHO_POSTFIX);
563563
$(QUIET_PREFIX) -$(P4_EDIT_START) $(GAMEOUTPUTFILE)$(SYM_EXT) $(P4_EDIT_END);
564-
$(QUIET_PREFIX) $(GEN_SYM) $(GAMEOUTPUTFILE);
564+
$(QUIET_PREFIX) -$(GEN_SYM) $(GAMEOUTPUTFILE);
565565
$(QUIET_PREFIX) -$(STRIP) $(GAMEOUTPUTFILE);
566566
$(QUIET_PREFIX) $(VSIGN) -signvalve $(GAMEOUTPUTFILE);
567567
$(QUIET_PREFIX) if [ "$(COPY_DLL_TO_SRV)" = "1" ]; then\
@@ -577,7 +577,7 @@ $(GAMEOUTPUTFILE): $(OUTPUTFILE)
577577
echo "----" $(QUIET_ECHO_POSTFIX);\
578578
$(P4_EDIT_START) $(IMPORTLIBRARY) $(P4_EDIT_END) && \
579579
mkdir -p `dirname $(IMPORTLIBRARY)` > /dev/null && \
580-
cp -v $(OUTPUTFILE) $(IMPORTLIBRARY); \
580+
cp $(OUTPUTFILE) $(IMPORTLIBRARY); \
581581
fi;
582582

583583

0 commit comments

Comments
 (0)