aboutsummaryrefslogtreecommitdiff
path: root/tools/build
diff options
context:
space:
mode:
authorMoritz Lenz <moritz@faui2k3.org>2015-11-22 12:33:05 +0000
committerMoritz Lenz <moritz@faui2k3.org>2015-11-22 12:33:05 +0000
commit60378f2972f175710d33615a51ba51bc59a344ff (patch)
treed6ad0694cdb16610bce030e5be56c483752a88aa /tools/build
parent76e441fb40bb006f32b379f7b2cbc7c8cb15ade8 (diff)
Revert "introduce support for sdkroot and sysroot to support cross-builds"
This reverts commit f0def6dc7b4f576668e689cfd44745e506a305ad. See https://github.com/rakudo/star/pull/53#issuecomment-158754696 for the reason.
Diffstat (limited to 'tools/build')
-rw-r--r--tools/build/Makefile.in4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/build/Makefile.in b/tools/build/Makefile.in
index 68e20c6..7b70874 100644
--- a/tools/build/Makefile.in
+++ b/tools/build/Makefile.in
@@ -7,8 +7,6 @@ STAR_VERSION = 2015.09
# install location
PREFIX_DIR = @prefix@
-SDKROOT_DIR = @sdkroot@
-SYSROOT_DIR = @sysroot@
# JVM install location
JVM_BIN_DIR = $(PREFIX_DIR)/bin
@@ -42,7 +40,7 @@ rakudo: @backend_exes@
@backend_exes@:
@echo "== Configuring and building Rakudo"
- cd $(RAKUDO_DIR) && $(PERL) Configure.pl --sysroot=$(SYSROOT_DIR) --sdkroot=$(SDKROOT_DIR) --prefix=$(PREFIX_DIR) --backends=@backends@ && $(MAKE)
+ cd $(RAKUDO_DIR) && $(PERL) Configure.pl --prefix=$(PREFIX_DIR) --backends=@backends@ && $(MAKE)
rakudo-test: rakudo
cd $(RAKUDO_DIR) && $(MAKE) test