• Show log

    Commit

  • Hash : 8a62de57
    Author : Guillem Jover
    Date : 2021-08-17T02:24:09

    build: Fix out of tree builds
    
    The '$<' variable is not guarantee to work in ordinary make rules by
    non GNU make implementations. In addition if it is supported it will
    be replaced by the actual source pathname (in VPATH mode), which is not
    the relative name we need on installation.
    
    Ref: https://www.gnu.org/software/autoconf/manual/autoconf.html#g_t_0024_003c-in-Ordinary-Make-Rules
    Reported-by: David Seifert <soap@gentoo.org>