[PATCH] Fix typo LIBGCCJIT_SYMLINK -> LIBGCCJIT_SONAME_SYMLINK

Arvind Sankar nivedita@alum.mit.edu
Tue Jan 1 00:00:00 GMT 2019


Resending and adding the jit list.

There seems to be a typo in gcc/jit/Make-lang.in where it references an
undefined LIBGCCJIT_SYMLINK instead of LIBGCCJIT_SONAME_SYMLINK.
---
 gcc/jit/Make-lang.in | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/gcc/jit/Make-lang.in b/gcc/jit/Make-lang.in
index 660f54d78bd..5cfd6035d8c 100644
--- a/gcc/jit/Make-lang.in
+++ b/gcc/jit/Make-lang.in
@@ -65,7 +65,7 @@ LIBGCCJIT_SONAME_OPTION = \
 	     -Wl$(COMMA)$(LD_SONAME_OPTION)$(COMMA)$(LIBGCCJIT_SONAME))
 
 jit: $(LIBGCCJIT_FILENAME) \
-	$(LIBGCCJIT_SYMLINK) \
+	$(LIBGCCJIT_SONAME_SYMLINK) \
 	$(LIBGCCJIT_LINKER_NAME_SYMLINK) \
 	$(FULL_DRIVER_NAME)
 
@@ -301,9 +301,8 @@ jit.uninstall:
 # We just have to delete files specific to us.
 
 jit.mostlyclean:
-	-rm -f $(LIBGCCJIT_FILENAME) $(LIBGCCJIT_SYMLINK)
+	-rm -f $(LIBGCCJIT_FILENAME) $(LIBGCCJIT_SONAME_SYMLINK)
 	-rm -f $(LIBGCCJIT_LINKER_NAME_SYMLINK) $(FULL_DRIVER_NAME)
-	-rm -f $(LIBGCCJIT_SONAME)
 	-rm -f $(jit_OBJS)
 
 jit.clean:
-- 
2.21.0



More information about the Jit mailing list