Commit 067c2c1c authored by Steve Holme's avatar Steve Holme
Browse files

gen_resp_file.bat: Removed unnecessary @ from all but the first command

There is need to use @ on every command once echo has been turned off.

Closes #3854
parent b5901cab
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -21,10 +21,12 @@ rem * KIND, either express or implied.
rem *
rem ***************************************************************************

@if exist %OUTFILE% (
if exist %OUTFILE% (
    del %OUTFILE%
)
@echo %MACRO_NAME% = \> %OUTFILE%
@for %%i in (%*) do @echo		%DIROBJ%/%%i \>>  %OUTFILE%
@echo. >>  %OUTFILE%

echo %MACRO_NAME% = \> %OUTFILE%
for %%i in (%*) do echo		%DIROBJ%/%%i \>>  %OUTFILE%
echo. >>  %OUTFILE%

:END