From: Ingo Brückl <[email protected]> $(STRIP) always expands to something, because it is one of the commands in the BRIEF list. This renders the condition pointless.
Signed-off-by: Ingo Brückl <[email protected]> Signed-off-by: Derek Buitenhuis <[email protected]> --- library.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.mak b/library.mak index 58f6360..7292c8a 100644 --- a/library.mak +++ b/library.mak @@ -25,7 +25,7 @@ $(SUBDIR)%-test.i: $(SUBDIR)%.c $(SUBDIR)x86/%.o: $(SUBDIR)x86/%.asm $(DEPYASM) $(YASMFLAGS) -I $(<D)/ -M -o $@ $< > $(@:.o=.d) $(YASM) $(YASMFLAGS) -I $(<D)/ -o $@ $< - -@ $(if $(STRIP), $(STRIP) -wN '..@*' $@) + -$(STRIP) -wN '..@*' $@ LIBOBJS := $(OBJS) $(SUBDIR)%.h.o $(TESTOBJS) $(LIBOBJS) $(LIBOBJS:.o=.i): CPPFLAGS += -DHAVE_AV_CONFIG_H -- 1.8.4.rc3 _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
