From 908b8aa481661cec199440ce0850cba55432e9f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Tue, 19 Jan 2010 21:37:41 +0000 Subject: [PATCH] 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. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35184 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- data/bin/installoptionalpackage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/bin/installoptionalpackage b/data/bin/installoptionalpackage index 0e517c0898..4ee489225b 100755 --- a/data/bin/installoptionalpackage +++ b/data/bin/installoptionalpackage @@ -30,7 +30,7 @@ declare -a availablePackages # 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()