diff mbox series

Fix typo LIBGCCJIT_SYMLINK -> LIBGCCJIT_SONAME_SYMLINK

Message ID 20190723184911.GA1127549@rani.riverdale.lan
State New
Headers show
Series Fix typo LIBGCCJIT_SYMLINK -> LIBGCCJIT_SONAME_SYMLINK | expand

Commit Message

Arvind Sankar July 23, 2019, 6:49 p.m. UTC
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(-)

Comments

Arvind Sankar July 31, 2019, 10:14 p.m. UTC | #1
Hi any feedback on this?

Thanks.

On Tue, Jul 23, 2019 at 02:49:13PM -0400, Arvind Sankar wrote:
> 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
diff mbox series

Patch

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: