Commit 5481deaa authored by Claes Sjofors's avatar Claes Sjofors

Wb build export and import fix

parent 095dcf89
......@@ -158,6 +158,12 @@ void wb_build::node( char *nodename, void *volumelist, int volumecnt)
else if ( sumsts == PWRB__NOBUILT && m_sts != PWRB__NOBUILT && m_sts != PWRB__INLIBHIER)
sumsts = m_sts;
export_files( bld_ePass_BeforeNode);
if ( evenSts())
sumsts = m_sts;
else if ( sumsts == PWRB__NOBUILT && m_sts != PWRB__NOBUILT && m_sts != PWRB__INLIBHIER)
sumsts = m_sts;
if ( !opt.manual) {
// Check if there is any new dbsfile
for ( int i = 0; i < volumecnt; i++) {
......@@ -244,6 +250,18 @@ void wb_build::node( char *nodename, void *volumelist, int volumecnt)
else if ( sumsts == PWRB__NOBUILT && m_sts != PWRB__NOBUILT)
sumsts = m_sts;
import_files( bld_ePass_AfterNode);
if ( evenSts())
sumsts = m_sts;
else if ( sumsts == PWRB__NOBUILT && m_sts != PWRB__NOBUILT && m_sts != PWRB__INLIBHIER)
sumsts = m_sts;
directories( 0, bld_ePass_AfterNode);
if ( evenSts())
sumsts = m_sts;
else if ( sumsts == PWRB__NOBUILT && m_sts != PWRB__NOBUILT && m_sts != PWRB__INLIBHIER)
sumsts = m_sts;
export_files( bld_ePass_AfterNode);
if ( evenSts())
sumsts = m_sts;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment