[haiku-commits] r35184 - haiku/trunk/data/bin

  • From: superstippi@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 19 Jan 2010 22:37:41 +0100 (CET)

Author: stippi
Date: 2010-01-19 22:37:41 +0100 (Tue, 19 Jan 2010)
New Revision: 35184
Changeset: http://dev.haiku-os.org/changeset/35184/haiku
Ticket: http://dev.haiku-os.org/ticket/5297

Modified:
   haiku/trunk/data/bin/installoptionalpackage
Log:
Patch by Matt Madia:
Ignore "NetFS" OptionalPackage in the installoptionalpackage script. It is a
source code only optional package which needs to be compiled from within the
tree.

Thanks a lot! Fixes #5297.


Modified: haiku/trunk/data/bin/installoptionalpackage
===================================================================
--- haiku/trunk/data/bin/installoptionalpackage 2010-01-19 21:08:52 UTC (rev 
35183)
+++ haiku/trunk/data/bin/installoptionalpackage 2010-01-19 21:37:41 UTC (rev 
35184)
@@ -30,7 +30,7 @@
 # Some Packages cannot be installed,
 # as they require either the source code or compiled binaries
 declare -a packageIgnoreList=( 'Bluetooth' 'Development' 'DevelopmentMin' \
-       'DevelopmentBase' 'P7zip' 'UserlandFS' 'Welcome')
+       'DevelopmentBase' 'NetFS' 'P7zip' 'UserlandFS' 'Welcome')
 
 
 function CreateInstallerScript()


Other related posts:

  • » [haiku-commits] r35184 - haiku/trunk/data/bin - superstippi