Skip to content

Commit

Permalink
[config] Enable make reconfig. RT #58034
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.parrot.org/parrot/trunk@36480 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
rurban committed Feb 8, 2009
1 parent 3242181 commit 8963c6e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Configure.pl
Expand Up @@ -63,6 +63,8 @@

# from Parrot::Configure::Data
$conf->options->set( %{$args} );
# save the command-line for make reconfig
$conf->data->set(configure_args => '"'.join("\" \"", map {qq($_)} @ARGV).'"');

# Log files created by Configure.pl in MANIFEST.configure.generated
$conf->{active_configuration} = 1;
Expand Down
6 changes: 4 additions & 2 deletions config/gen/makefiles/root.in
Expand Up @@ -20,6 +20,8 @@ DEVEL = @DEVEL@
VERSION = @VERSION@$(DEVEL)
SOVERSION = @VERSION@

CONFIG_ARGS = @configure_args@

# Override at least PREFIX with the install location if you're going
# to be using this outside of your build area.
BUILDPREFIX =
Expand Down Expand Up @@ -1743,8 +1745,8 @@ distclean : realclean
svnclobber : .svn
$(PERL) tools/dev/svnclobber.pl

reconfig : clean
$(PERL) Configure.pl
reconfig : realclean
$(PERL) Configure.pl $(CONFIG_ARGS)

manitest :
$(PERL) tools/dev/manicheck.pl
Expand Down

0 comments on commit 8963c6e

Please sign in to comment.