gdbserver: fix Makefile dependency of regformat-generated files on regdat.sh
authorSimon Marchi <simon.marchi@efficios.com>
Mon, 13 Jan 2020 18:57:32 +0000 (13:57 -0500)
committerSimon Marchi <simon.marchi@efficios.com>
Mon, 13 Jan 2020 18:58:02 +0000 (13:58 -0500)
The intent of the rules modified by this patch is that the *-generated.c
files generated by regdat.sh are re-generated in the event that
regdat.sh is modified.  However, if I build, touch regdat.sh, and build
again, the files are not re-generated during the second build.

This is because regdat.sh is specified as an order-only dependency [1],
after the pipe.  Make therefore only ensures that regdat.sh exists
before generating the target file, it doesn't check the timestamp of
regdat.sh.

This patch changes it to be a regular prerequisite.

The rules use the $< variable, which is substituted by the first
prerequisite only, so the command lines won't change.

[1] https://www.gnu.org/software/make/manual/html_node/Prerequisite-Types.html

gdb/gdbserver/ChangeLog:

* Makefile.in (%-generated.c): Make $(regdat_sh) a regular
prerequisite.

gdb/gdbserver/ChangeLog
gdb/gdbserver/Makefile.in

index 67d39beba5b83c46d2b565fa22c3d85b5b38fd63..730c53a2e830a61c6d5b4d3d2da913d6776c8bc7 100644 (file)
@@ -1,3 +1,8 @@
+2020-01-13  Simon Marchi  <simon.marchi@efficios.com>
+
+       * Makefile.in (%-generated.c): Make $(regdat_sh) a regular
+       prerequisite.
+
 2020-01-12  Simon Marchi  <simon.marchi@polymtl.ca>
 
        * linux-arm-tdesc.c: Include linux-arm-tdesc.h.
index 1125426778b8d3e5566740b70c60941b1283e045..fd43e407b8a3b29518f6c3f690e9cf4964698b18 100644 (file)
@@ -648,16 +648,16 @@ gdbsupport/%.o: ../gdbsupport/%.c
 # Rules for register format descriptions.  Suffix destination files with
 # -generated to identify and clean them easily.
 
-%-generated.c: ../regformats/%.dat $(regdat_sh)
+%-generated.c: ../regformats/%.dat $(regdat_sh)
        $(ECHO_REGDAT) $(SHELL) $(regdat_sh) $< $@
 
-%-generated.c: ../regformats/arm/%.dat $(regdat_sh)
+%-generated.c: ../regformats/arm/%.dat $(regdat_sh)
        $(ECHO_REGDAT) $(SHELL) $(regdat_sh) $< $@
 
-%-generated.c: ../regformats/i386/%.dat $(regdat_sh)
+%-generated.c: ../regformats/i386/%.dat $(regdat_sh)
        $(ECHO_REGDAT) $(SHELL) $(regdat_sh) $< $@
 
-%-generated.c: ../regformats/rs6000/%.dat $(regdat_sh)
+%-generated.c: ../regformats/rs6000/%.dat $(regdat_sh)
        $(ECHO_REGDAT) $(SHELL) $(regdat_sh) $< $@
 
 #