Skip to content

Commit

Permalink
Revert "Call configure using the CONFIG_SHELL variable"
Browse files Browse the repository at this point in the history
Code did not ultimately solve the problem it intended to. Also, the
generated configure file will re-launch itself with $CONFIG_SHELL
(although the documentation says that feature is not implemented yet)

Signed-off-by: Devin Nakamura <devinn@ca.ibm.com>
  • Loading branch information
dnakamura committed Jul 13, 2018
1 parent fcfd166 commit bf29787
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions run_configure.mk
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,6 @@ help:
# Remove all built-in rules
.SUFFIXES:


# Set a default value for CONFIG_SHELL
CONFIG_SHELL ?= sh

###
### SPEC Specific Configure Arguments
###
Expand Down Expand Up @@ -132,7 +128,7 @@ clean: clean-environment-variables
###

define CONFIGURE_RECIPE
$(CONFIG_SHELL) configure --disable-auto-build-flag 'OMRGLUE=$(OMRGLUE)' 'SPEC=$(SPEC)' $(CONFIGURE_ARGS)
sh configure --disable-auto-build-flag 'OMRGLUE=$(OMRGLUE)' 'SPEC=$(SPEC)' $(CONFIGURE_ARGS)
# Force the timestamps of unchanged files to be updated
touch $(CONFIGURE_OUTPUT_FILES)
endef
Expand Down

0 comments on commit bf29787

Please sign in to comment.