We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9622ac commit 60e7404Copy full SHA for 60e7404
Makefile
@@ -157,9 +157,9 @@ build-%: $(GNATCOV_RTS)
157
# the user choice.
158
159
ifeq ($(GNATCOLL_PROJECTS), yes)
160
- $(SED) -i 's/^-- with "gpr"/with "gpr"/g' $(GNATCOLL_GPR)
+ $(SED) -e 's/^-- with "gpr"/with "gpr"/g' $(GNATCOLL_GPR) > tmp ; mv tmp $(GNATCOLL_GPR)
161
else
162
- $(SED) -i 's/^with "gpr"/-- with "gpr"/g' $(GNATCOLL_GPR)
+ $(SED) -e 's/^with "gpr"/-- with "gpr"/g' $(GNATCOLL_GPR) > tmp ; mv tmp $(GNATCOLL_GPR)
163
endif
164
165
ifeq ($(GNATCOV), yes)
0 commit comments