Skip to content
This repository has been archived by the owner on Jun 4, 2023. It is now read-only.

Commit

Permalink
common.mak: never ignore an error if strip doesn't succeed
Browse files Browse the repository at this point in the history
  • Loading branch information
Rechi authored and fritsch committed Dec 9, 2017
1 parent 8ab1844 commit f96fd5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffbuild/common.mak
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ COMPILE_NVCC = $(call COMPILE,NVCC)

%.o: %.asm
$(COMPILE_X86ASM)
-$(if $(ASMSTRIPFLAGS), $(STRIP) $(ASMSTRIPFLAGS) $@)
$(if $(STRIP), $(if $(ASMSTRIPFLAGS), $(STRIP) $(ASMSTRIPFLAGS) $@))

%.o: %.rc
$(WINDRES) $(IFLAGS) --preprocessor "$(DEPWINDRES) -E -xc-header -DRC_INVOKED $(CC_DEPFLAGS)" -o $@ $<
Expand Down

0 comments on commit f96fd5c

Please sign in to comment.