diff options
author | Jakub Jelinek <jakub@redhat.com> | 2022-01-13 17:45:58 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2022-01-13 17:50:28 +0100 |
commit | 70ba28304b7ff91761db248bc8354eda8e9a4796 (patch) | |
tree | 4bae00c1d70bf94ccddaeeff8a81c8e57cca2b58 /libgfortran | |
parent | 9d8e27fac3c6426fbfaf30d51cbf2761c5491a6a (diff) | |
download | gcc-70ba28304b7ff91761db248bc8354eda8e9a4796.tar.gz |
libgfortran: Fix Solaris version file creation [PR104006]
I forgot to change the gfortran.map-sun goal to gfortran.ver-sun
when changing other spots for the preprocessed version file.
2022-01-13 Jakub Jelinek <jakub@redhat.com>
PR libfortran/104006
* Makefile.am (gfortran.map-sun): Rename target to ...
(gfortran.ver-sun): ... this.
* Makefile.in: Regenerated.
Diffstat (limited to 'libgfortran')
-rw-r--r-- | libgfortran/Makefile.am | 2 | ||||
-rw-r--r-- | libgfortran/Makefile.in | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/libgfortran/Makefile.am b/libgfortran/Makefile.am index 00745403bbb..43f91d5bbf5 100644 --- a/libgfortran/Makefile.am +++ b/libgfortran/Makefile.am @@ -23,7 +23,7 @@ endif if LIBGFOR_USE_SYMVER_SUN version_arg = -Wl,-M,gfortran.ver-sun version_dep = gfortran.ver-sun gfortran.ver -gfortran.map-sun : gfortran.ver \ +gfortran.ver-sun : gfortran.ver \ $(top_srcdir)/../contrib/make_sunver.pl \ $(libgfortran_la_OBJECTS) $(libgfortran_la_LIBADD) perl $(top_srcdir)/../contrib/make_sunver.pl \ diff --git a/libgfortran/Makefile.in b/libgfortran/Makefile.in index cf500a002e8..fc44ab53a19 100644 --- a/libgfortran/Makefile.in +++ b/libgfortran/Makefile.in @@ -719,7 +719,6 @@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ -runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ @@ -7616,7 +7615,7 @@ uninstall-am: uninstall-cafexeclibLTLIBRARIES uninstall-gfor_cHEADERS \ @LIBGFOR_USE_SYMVER_TRUE@gfortran.ver: $(srcdir)/gfortran.map kinds.inc @LIBGFOR_USE_SYMVER_TRUE@ $(EGREP) -v '#(#| |$$)' $< | \ @LIBGFOR_USE_SYMVER_TRUE@ $(PREPROCESS) -P -include config.h -include kinds.inc - > $@ || (rm -f $@ ; exit 1) -@LIBGFOR_USE_SYMVER_SUN_TRUE@@LIBGFOR_USE_SYMVER_TRUE@gfortran.map-sun : gfortran.ver \ +@LIBGFOR_USE_SYMVER_SUN_TRUE@@LIBGFOR_USE_SYMVER_TRUE@gfortran.ver-sun : gfortran.ver \ @LIBGFOR_USE_SYMVER_SUN_TRUE@@LIBGFOR_USE_SYMVER_TRUE@ $(top_srcdir)/../contrib/make_sunver.pl \ @LIBGFOR_USE_SYMVER_SUN_TRUE@@LIBGFOR_USE_SYMVER_TRUE@ $(libgfortran_la_OBJECTS) $(libgfortran_la_LIBADD) @LIBGFOR_USE_SYMVER_SUN_TRUE@@LIBGFOR_USE_SYMVER_TRUE@ perl $(top_srcdir)/../contrib/make_sunver.pl \ |