Kaydet (Commit) 9be1f793 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

avoid exporting un-necessary symbol/alias for stable scripts

üst 4a9526d5
...@@ -646,9 +646,6 @@ if ( $platform =~ m/cygwin/ ) ...@@ -646,9 +646,6 @@ if ( $platform =~ m/cygwin/ )
ToFile( "TOUCH", $WIN_TOUCH, "e" ); ToFile( "TOUCH", $WIN_TOUCH, "e" );
} }
ToFile( "DELIVER", "deliver.pl", "e" );
ToFile( "MKOUT", "mkout.pl", "e" );
ToFile( "ZIPDEP", "zipdep.pl", "e" );
# #
# Writing the aliases to file. # Writing the aliases to file.
...@@ -666,7 +663,6 @@ if ($platform =~ m/solaris|darwin|freebsd/) ...@@ -666,7 +663,6 @@ if ($platform =~ m/solaris|darwin|freebsd/)
ToFile( "GNUPATCH", "@GNUPATCH@", "e"); ToFile( "GNUPATCH", "@GNUPATCH@", "e");
} }
ToFile( "ENV_SCRIPT", "$outfile", "e" );
# #
# Writing unset variables you might not need to file. # Writing unset variables you might not need to file.
# #
......
...@@ -191,7 +191,7 @@ ...@@ -191,7 +191,7 @@
my $verbose = 0; my $verbose = 0;
my @modules_built = (); my @modules_built = ();
my $deliver_command = $ENV{DELIVER}; my $deliver_command = "deliver.pl";
my %prj_platform = (); my %prj_platform = ();
my $check_error_string = ''; my $check_error_string = '';
my $dmake = ''; my $dmake = '';
...@@ -1512,7 +1512,7 @@ sub cancel_build { ...@@ -1512,7 +1512,7 @@ sub cancel_build {
print STDERR "\n"; print STDERR "\n";
print STDERR "" . $ENV{'OOO_SHELL'} . "\n"; print STDERR "" . $ENV{'OOO_SHELL'} . "\n";
print STDERR "cd " . $ENV{'SRC_ROOT'} . "\n"; print STDERR "cd " . $ENV{'SRC_ROOT'} . "\n";
print STDERR "source ./" . $ENV{'ENV_SCRIPT'} . "\n"; print STDERR "source ./build_env\n";
print STDERR "cd $module\n"; print STDERR "cd $module\n";
if ($source_config->is_gbuild($module) ) if ($source_config->is_gbuild($module) )
{ {
......
...@@ -271,6 +271,9 @@ PROFILE= ...@@ -271,6 +271,9 @@ PROFILE=
DBGUTIL= DBGUTIL=
dbgutil= dbgutil=
ZIPDEP:="zipdep.pl"
# =========================================================================== # ===========================================================================
# unter NT werden Variablennamen an untergeordnete makefiles UPPERCASE # unter NT werden Variablennamen an untergeordnete makefiles UPPERCASE
# weitergereicht, aber case significant ausgewertet! # weitergereicht, aber case significant ausgewertet!
...@@ -563,7 +566,7 @@ LOCAL_COMMON_OUT:=$(subst,$(OUTPATH),$(COMMON_OUTDIR) $(OUT)) ...@@ -563,7 +566,7 @@ LOCAL_COMMON_OUT:=$(subst,$(OUTPATH),$(COMMON_OUTDIR) $(OUT))
# target instead of using $(OUT)/inc/myworld.mk as target name. # target instead of using $(OUT)/inc/myworld.mk as target name.
# (See iz62795) # (See iz62795)
$(posix_PWD)/$(OUT)/inc/%world.mk : $(posix_PWD)/$(OUT)/inc/%world.mk :
@$(MKOUT) $(ROUT) @mkout.pl $(ROUT)
@echo $(EMQ)# > $@ @echo $(EMQ)# > $@
.INCLUDE : $(posix_PWD)/$(OUT)/inc/myworld.mk .INCLUDE : $(posix_PWD)/$(OUT)/inc/myworld.mk
......
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