From: Nadav Har'El <[email protected]> Committer: Nadav Har'El <[email protected]> Branch: master
Makefile: fix misleading message When compiling a "file.S", the Makefile used to print that it is compiling "file.s" (with a lowercase s). Fix that. Signed-off-by: Nadav Har'El <[email protected]> --- diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -369,7 +369,7 @@ $(out)/%.o: %.c | generated-headers $(out)/%.o: %.S $(makedir) - $(call quiet, $(CXX) $(CXXFLAGS) $(ASFLAGS) -c -o $@ $<, AS $*.s) + $(call quiet, $(CXX) $(CXXFLAGS) $(ASFLAGS) -c -o $@ $<, AS $*.S) $(out)/%.o: %.s $(makedir) -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
