diff options
author | Alexander Strasser <eclipse7@gmx.net> | 2012-09-15 23:34:21 +0200 |
---|---|---|
committer | Alexander Strasser <eclipse7@gmx.net> | 2012-09-29 19:27:01 +0200 |
commit | 99b18b110c98e3ec7444b9756a908da8dcd5765b (patch) | |
tree | 52bcfc979cc25c6cf17aac7076238fd07a1dec96 /doc | |
parent | f049729e613ed3fb0abf767eb14423f545385c6e (diff) | |
download | ffmpeg-99b18b110c98e3ec7444b9756a908da8dcd5765b.tar.gz |
doc/fate: Move fate config example into doc subdirectory
Be compatible with texi2html 5.0 which doesn't search relative
file names in search paths anymore.
Signed-off-by: Alexander Strasser <eclipse7@gmx.net>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/fate.texi | 4 | ||||
-rw-r--r-- | doc/fate_config.sh.template | 25 |
2 files changed, 27 insertions, 2 deletions
diff --git a/doc/fate.texi b/doc/fate.texi index e04f62fc79..4c2ba4da16 100644 --- a/doc/fate.texi +++ b/doc/fate.texi @@ -93,11 +93,11 @@ tests/fate.sh /path/to/fate_config @end example A configuration file template with comments describing the individual -configuration variables can be found at @file{tests/fate_config.sh.template}. +configuration variables can be found at @file{doc/fate_config.sh.template}. @ifhtml The mentioned configuration template is also available here: -@verbatiminclude ../tests/fate_config.sh.template +@verbatiminclude fate_config.sh.template @end ifhtml Create a configuration that suits your needs, based on the configuration diff --git a/doc/fate_config.sh.template b/doc/fate_config.sh.template new file mode 100644 index 0000000000..f7bd625429 --- /dev/null +++ b/doc/fate_config.sh.template @@ -0,0 +1,25 @@ +slot= # some unique identifier +repo=git://source.ffmpeg.org/ffmpeg.git # the source repository +samples= # path to samples directory +workdir= # directory in which to do all the work +#fate_recv="ssh -T fate@fate.ffmpeg.org" # command to submit report +comment= # optional description + +# the following are optional and map to configure options +arch= +cpu= +cross_prefix= +cc= +target_os= +sysroot= +target_exec= +target_path= +extra_cflags= +extra_ldflags= +extra_libs= +extra_conf= # extra configure options not covered above + +#make= # name of GNU make if not 'make' +makeopts= # extra options passed to 'make' +#tar= # command to create a tar archive from its arguments on stdout, + # defaults to 'tar c' |