From ec47d17d2209a1cf8b2d8bc1e563aa89e040727a Mon Sep 17 00:00:00 2001 From: Anthony PERARD Date: Mon, 6 Dec 2021 17:01:46 +0000 Subject: [PATCH] tools/Rules.mk: Remove $(CFLAGS.opic) from %.opic: %.S $(CFLAGS.opic) isn't set anywere, never was, just remove it. Signed-off-by: Anthony PERARD --- tools/Rules.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/Rules.mk b/tools/Rules.mk index b022da3336..4e9b4ee17f 100644 --- a/tools/Rules.mk +++ b/tools/Rules.mk @@ -155,7 +155,7 @@ INSTALL_PYTHON_PROG = \ %.o: %.S $(CC) $(CFLAGS) $(CFLAGS_$*.o) -c $< -o $@ $(APPEND_CFLAGS) %.opic: %.S - $(CC) $(CPPFLAGS) -DPIC $(CFLAGS) $(CFLAGS.opic) -fPIC -c -o $@ $< $(APPEND_CFLAGS) + $(CC) $(CPPFLAGS) -DPIC $(CFLAGS) -fPIC -c -o $@ $< $(APPEND_CFLAGS) subdirs-all subdirs-clean subdirs-install subdirs-distclean subdirs-uninstall: .phony @set -e; for subdir in $(SUBDIRS) $(SUBDIRS-y); do \ -- 2.30.2