view scripts/@ftp/module.mk @ 21093:0ebb8e26ebbc

build: Document Automake failure to 'include scripts/@ftp/module.mk'. * scripts/@ftp/module.mk: Add explanation why this file is empty. * scripts/module.mk: Delimit included scripts/@ftp/module.mk file with line of '#'.
author Rik <rik@octave.org>
date Sun, 17 Jan 2016 07:22:55 -0800
parents 429f83903400
children 8308417aff1c
line wrap: on
line source

## Automake fails to process "include scripts/@ftp/module.mk" in the directory
## above.  All of the commands which would normally be in this file were
## manually placed in scripts/module.mk to avoid using the "include" directive.
##
## This is an Automake bug.  Automake has switched to a Perl backend which uses
## the following pattern to detect a path:
##
## my $PATH_PATTERN = '(\w|[+/.-])+';
##
## This pattern only includes alphanumeric, '_', and [+/.-], but not "@".