diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-05-06 07:58:44 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-05-06 07:58:44 +0000 |
commit | ed0613addae202ec9988a66f3bf27b13947685a8 (patch) | |
tree | ebe546d9cf6521c54c0b7bdb4b3eb13aabb6be3b /Makefile | |
parent | 5a3bb63846037b6dcf17a79628cdb45d01d44113 (diff) | |
download | abuild-ed0613addae202ec9988a66f3bf27b13947685a8.tar.gz abuild-ed0613addae202ec9988a66f3bf27b13947685a8.tar.bz2 abuild-ed0613addae202ec9988a66f3bf27b13947685a8.tar.xz abuild-ed0613addae202ec9988a66f3bf27b13947685a8.zip |
abuild: rename apkcache to abuildrepo
To avoid confusing with the /etc/apk/cache
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ VERSION := 2.2 prefix ?= /usr sysconfdir ?= /etc datadir ?= $(prefix)/share/$(PACKAGE) -apkcache ?= ~/.cache/apks +abuildrepo ?= ~/.cache/apks SCRIPTS := abuild devbuild mkalpine buildrepo abuild-keygen \ abuild-sign newapkbuild @@ -33,7 +33,7 @@ SED_REPLACE := -e 's:@VERSION@:$(FULL_VERSION):g' \ -e 's:@prefix@:$(prefix):g' \ -e 's:@sysconfdir@:$(sysconfdir):g' \ -e 's:@datadir@:$(datadir):g' \ - -e 's:@apkcache@:$(apkcache):g' + -e 's:@abuildrepo@:$(abuildrepo):g' SSL_LIBS := $(shell pkg-config --libs openssl) |