Hello, I'm making an installation profile based on nodestream (after reading documentation and analyzing http://drupal.org/sandbox/fabsor/1075924).

Every time that I'm going to install my profile, I get this message:

    Notice: Undefined index: nodestream in install_profile_modules() (line 1365 of /var/www/html/Distros/orbinoticias/testn/includes/install.core.inc).
    Notice: Trying to get property of non-object in install_profile_modules() (line 1365 of /var/www/html/Distros/orbinoticias/testn/includes/install.core.inc).
    Notice: Undefined index: nodestream in install_profile_modules() (line 1373 of /var/www/html/Distros/orbinoticias/testn/includes/install.core.inc).
    Notice: Trying to get property of non-object in install_profile_modules() (line 1373 of /var/www/html/Distros/orbinoticias/testn/includes/install.core.inc).

It installs ok, except that I get some features partially enabled. I mean, If I want to create an article, the Byline field is not enabled. If I ran the default config rebuild it works, but I need it working at the beggining. Am I missing something? or is this a bug?

My distro.make:

api = 2
core = 7.x

; Drupal Core
: ===========
projects[drupal][type] = "core"
projects[drupal][version] = 7.20

; NodeStream
projects[nodestream][type] = profile
projects[nodestream][download][type] = git
projects[nodestream][download][url] = http://git.drupal.org/project/nodestream.git
projects[nodestream][download][revision] = 7.x-2.0-rc4

; Orbinoticias
; -------
projects[orbinoticias][type] = "profile"
projects[orbinoticias][download][type] = "git"
projects[orbinoticias][download][url] = "git@bitbucket.org:yaazkal/orbinoticias.git"
projects[orbinoticias][download][branch] = "develop"

My orbinoticias.make

api = 2
core = 7.x
; Admin menu
; http://drupal.org/project/admin_menu
projects[admin_menu][type] = module
projects[admin_menu][version] = 3.0-rc4
projects[admin_menu][subdir] = contrib

; Module filter
; http://drupal.org/project/module_filter
projects[module_filter][type] = module
projects[module_filter][version] = 1.7
projects[module_filter][subdir] = contrib

; Themes
: =====
projects[shiny][type] = theme
projects[shiny][version] = 1.0
projects[shiny][subdir] = contrib

;  Profiler
;  http://drupal.org/project/profiler
;  --------
libraries[profiler][type] = "libraries"
libraries[profiler][download][type] = "get"
libraries[profiler][download][url] = "http://ftp.drupal.org/files/projects/profiler-7.x-2.0-beta1.tar.gz"

My orbinoticias.info

name = Orbinoticias
description = Orbinoticias.
core = 7.x
base = nodestream
theme = ns_theme
variables[admin_theme] = shiny
variables[node_admin_theme] = 1

; Contrib
dependencies[] = admin_menu_toolbar
dependencies[] = module_filter

; NodeStream Products
dependencies[] = ns_prod_news
dependencies[] = ns_prod_blog
dependencies[] = ns_prod_rss

; NodeStream
dependencies[] = ns_text
dependencies[] = ns_i18n
dependencies[] = ns_workbench
dependencies[] = ns_ad
dependencies[] = ns_fact
dependencies[] = ns_page
dependencies[] = ns_poll

My orbinoticias.profile

<?php
!function_exists('profiler_v2') ? require_once('libraries/profiler/profiler.inc') : FALSE;
profiler_v2('orbinoticias');

Everything seems to be ok. If I create a sub-installation profile of orbinoticias, happens the same, it shows the message, install ok, but now the Byline field is not enabled and also the Contributor field. So it is pretty weird.

Please tell me if I'm missing something.

Thanks a lot !

PS: I have created the symlinks for modules, libraries and themes in orbinoticias profile.