From ed985423ac969e5dcc1f71ccee16d57462140ad8 Mon Sep 17 00:00:00 2001 From: joost Date: Sun, 19 Sep 2010 18:23:12 +0000 Subject: [PATCH] * Do not use -c command line parameter for the compiler executable, it is already used for the compiler config file git-svn-id: trunk@16015 - --- utils/fppkg/fppkg.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/fppkg/fppkg.pp b/utils/fppkg/fppkg.pp index 2bbee2363f..fa755c0979 100644 --- a/utils/fppkg/fppkg.pp +++ b/utils/fppkg/fppkg.pp @@ -180,7 +180,7 @@ begin Writeln(' -o --options=value Pass extra options to the compiler'); Writeln(' -n Do not read the default configuration files'); Writeln(' -p --prefix=value Specify the prefix'); - Writeln(' -c --compiler=val. Specify the compiler-executable'); + Writeln(' --compiler=value Specify the compiler-executable'); Writeln('Actions:'); Writeln(' update Update packages list'); Writeln(' list List available and installed packages'); @@ -305,7 +305,7 @@ begin FPMakeCompilerOptions.GlobalPrefix := OptionArg(I); FPMakeCompilerOptions.LocalPrefix := OptionArg(I); end - else if CheckOption(I,'c','compiler') then + else if CheckOption(I,'','compiler') then begin CompilerOptions.Compiler := OptionArg(I); FPMakeCompilerOptions.Compiler := OptionArg(I);