cachegen: Remove remnants of -f option

The -f option of cachegen was removed in d71c794d.

refs #16211
This commit is contained in:
David Fuhrmann 2015-12-26 19:08:22 +01:00
parent 6db91d9999
commit b15db2c780

View File

@ -41,7 +41,7 @@ static void version (void)
static void usage (const char *path)
{
printf (
"Usage: %s [-f] <path>\n"
"Usage: %s <path>\n"
"Generate the LibVLC plugins cache for the specified plugins directory.\n",
path);
}
@ -60,7 +60,7 @@ int main (int argc, char *argv[])
int c;
while ((c = getopt_long (argc, argv, "fhV", opts, NULL)) != -1)
while ((c = getopt_long (argc, argv, "hV", opts, NULL)) != -1)
switch (c)
{
case 'h':