Skip to content
  • Simon Marchi's avatar
    9207e30d
    Makeconfig: Use $(error ...) to output error message · 9207e30d
    Simon Marchi authored
    Being not familiar with the glibc repository, I typed "make" inside some
    subdirectory that has a Makefile, and was met with:
    
        $ make
        ../Makeconfig:42: *** missing separator.  Stop.
    
    At Makeconfig:42, we have:
    
        objdir must be defined by the build-directory Makefile.
    
    Change that to use $(error ...), which I guess was the original
    intention.  The result is:
    
        $ make
        ../Makeconfig:42: *** objdir must be defined by the build-directory Makefile.  Stop.
    9207e30d
    Makeconfig: Use $(error ...) to output error message
    Simon Marchi authored
    Being not familiar with the glibc repository, I typed "make" inside some
    subdirectory that has a Makefile, and was met with:
    
        $ make
        ../Makeconfig:42: *** missing separator.  Stop.
    
    At Makeconfig:42, we have:
    
        objdir must be defined by the build-directory Makefile.
    
    Change that to use $(error ...), which I guess was the original
    intention.  The result is:
    
        $ make
        ../Makeconfig:42: *** objdir must be defined by the build-directory Makefile.  Stop.
Loading