]> granicus.if.org Git - libx264/commit
Makefile: Add missing dependency of '.depend' on 'oclobj.h'
authorSergei Trofimovich <slyich@gmail.com>
Mon, 19 Sep 2022 20:05:56 +0000 (21:05 +0100)
committerSergei Trofimovich <slyich@gmail.com>
Mon, 19 Sep 2022 21:31:01 +0000 (22:31 +0100)
commite067ab0b530395f90b578f6d05ab0a225e2efdf9
treecb9494b8f102d8e96904f70bde6ed70c5470fb4b
parent7628a5696f79a1f0421dda99ab37b34481c69821
Makefile: Add missing dependency of '.depend' on 'oclobj.h'

Without the change parallel build occasionally fails as:

    $ make --shuffle
    ...
    gcc ... -c common/opencl.c -o common/opencl-8.o ...
    common/opencl.c:116:10: fatal error: common/oclobj.h: No such file or directory
      116 | #include "common/oclobj.h"
          |          ^~~~~~~~~~~~~~~~~

Best reproducible with `make --shuffle` mode:
   https://savannah.gnu.org/bugs/index.php?62100

This happens because `common/oclobj.h` is an autogenerated file.
Normally `.depend` would contain this autogenerated dependency.
But nothing forces `common/oclobj.h` to be generated.

The change moves dependency of $(GENERATED) from final binaries
to `.depend` itself:

    .depend: $(GENERATED)
Makefile