diff options
Diffstat (limited to 'testing/scripts/recipes/006_tkm-rpc.mk')
-rw-r--r-- | testing/scripts/recipes/006_tkm-rpc.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testing/scripts/recipes/006_tkm-rpc.mk b/testing/scripts/recipes/006_tkm-rpc.mk index 571d590d1..dc6847ca5 100644 --- a/testing/scripts/recipes/006_tkm-rpc.mk +++ b/testing/scripts/recipes/006_tkm-rpc.mk @@ -4,7 +4,9 @@ PKG = tkm-rpc SRC = http://git.codelabs.ch/git/$(PKG).git REV = v0.1 -export ADA_PROJECT_PATH=/root/libraries/lib/gnat +PREFIX = /usr/local/ada + +export ADA_PROJECT_PATH=$(PREFIX)/lib/gnat all: install @@ -18,4 +20,4 @@ all: install @touch $@ install: .$(PKG)-built - cd $(PKG) && make install + cd $(PKG) && make PREFIX=$(PREFIX) install |