Skip to content

Commit 425700d

Browse files
committed
Allow overriding IDRIS via environment variable
1 parent 46ab7c8 commit 425700d

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

libs/base/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
IDRIS := idris
1+
IDRIS ?= idris
22
PKG := base
33

44
build:

libs/contrib/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
IDRIS := idris
1+
IDRIS ?= idris
22
PKG := contrib
33

44
build:

libs/effects/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
IDRIS := idris
1+
IDRIS ?= idris
22
PKG := effects
33

44
build:

libs/prelude/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
IDRIS := idris
1+
IDRIS ?= idris
22
PKG := prelude
33

44
build:
5+
echo "LOC $(IDRIS)"
56
$(IDRIS) --build ${PKG}.ipkg
67

78
install:

libs/pruviloj/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
IDRIS := idris
1+
IDRIS ?= idris
22
PKG := pruviloj
33

44
build:

0 commit comments

Comments
 (0)