Browse Source

* Fixed conversion of Makefile.fpc - Options was changed to a stringlist

git-svn-id: trunk@17767 -
michael 14 years ago
parent
commit
419055f912
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/fppkg/src/pkgmkconv.pp

+ 1 - 1
packages/fppkg/src/pkgmkconv.pp

@@ -213,7 +213,7 @@ begin
     If (FPackageVersion<>'') then
     If (FPackageVersion<>'') then
       Add('    P.Version:='''+FPackageVersion+''';');
       Add('    P.Version:='''+FPackageVersion+''';');
     If (FPackageOptions<>'') then
     If (FPackageOptions<>'') then
-      Add('    P.Options:='''+FPackageOptions+''';');
+      Add('    P.Options.Add('''+FPackageOptions+''');');
     If (FPackageDeps<>'') then
     If (FPackageDeps<>'') then
       begin
       begin
       S:=GetWord(FPackageDeps);
       S:=GetWord(FPackageDeps);