[haiku-commits] r41357 - haiku/trunk/build/jam

  • From: scott mc <scottmc2@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 7 May 2011 05:36:33 +0200 (CEST)

Author: scottmc
Date: 2011-05-07 05:36:32 +0200 (Sat, 07 May 2011)
New Revision: 41357
Changeset: https://dev.haiku-os.org/changeset/41357

Modified:
   haiku/trunk/build/jam/OptionalPackages
Log:
Updated groff gcc2 build to clean up directories, added gcc4 built groff.


Modified: haiku/trunk/build/jam/OptionalPackages
===================================================================
--- haiku/trunk/build/jam/OptionalPackages      2011-05-07 03:31:32 UTC (rev 
41356)
+++ haiku/trunk/build/jam/OptionalPackages      2011-05-07 03:36:32 UTC (rev 
41357)
@@ -829,9 +829,17 @@
        if $(TARGET_ARCH) != x86 {
                Echo "No optional package Groff available for $(TARGET_ARCH)" ;
        } else {
-               InstallOptionalHaikuImagePackage
-                        groff-1.20.1-x86-gcc2-2010-08-31.zip
-                       : $(baseURL)/groff-1.20.1-x86-gcc2-2010-08-31.zip ;
+               if $(HAIKU_GCC_VERSION[1]) >= 4 {
+                       InstallOptionalHaikuImagePackage
+                               groff-1.20.1-x86-gcc4-2011-05-06.zip
+                               : 
$(baseURL)/groff-1.20.1-x86-gcc4-2011-05-06.zip
+                               : : true ;
+               } else {
+                       InstallOptionalHaikuImagePackage
+                                groff-1.20.1-x86-gcc2-2011-05-06.zip
+                               : 
$(baseURL)/groff-1.20.1-x86-gcc2-2011-05-06.zip
+                               : : true ;
+               }
        }
 }
 


Other related posts:

  • » [haiku-commits] r41357 - haiku/trunk/build/jam - scott mc