fc-cache: --sysroot option takes an argument

The getopt_long option definitions say that sysroot doesn't take an argument,
when it in fact does.

Signed-off-by: Ross Burton <ross.burton@intel.com>
This commit is contained in:
Ross Burton 2013-11-26 17:18:25 +00:00 committed by Akira TAGOH
parent 38acb08d97
commit a5fd7912ff
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@
const struct option longopts[] = {
{"force", 0, 0, 'f'},
{"really-force", 0, 0, 'r'},
{"sysroot", 0, 0, 'y'},
{"sysroot", required_argument, 0, 'y'},
{"system-only", 0, 0, 's'},
{"version", 0, 0, 'V'},
{"verbose", 0, 0, 'v'},