diff options
author | Timo Teräs <timo.teras@iki.fi> | 2016-07-26 08:05:17 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-08-01 14:28:44 +0300 |
commit | f7e2b48d1cdcbd2c84705de20669b94c62ab6371 (patch) | |
tree | 12473e808a51531e4f3233070c92c22a43f85c90 /Makefile | |
parent | f459607da762d2b574583939ff2bb834d66a47f3 (diff) | |
download | abuild-f7e2b48d1cdcbd2c84705de20669b94c62ab6371.tar.gz abuild-f7e2b48d1cdcbd2c84705de20669b94c62ab6371.tar.bz2 abuild-f7e2b48d1cdcbd2c84705de20669b94c62ab6371.tar.xz abuild-f7e2b48d1cdcbd2c84705de20669b94c62ab6371.zip |
abuild: remove PKGDEST and install_after features
supporting these features with cross building is non-trivial
and they do are generally not useful features, so remove them.
as result the abuildrepo is also removed to write out paths.
all package generation paths now use $REPODEST/$repo/$CARCH
which allows easily writing packages to correct $subpkgarch
in future commits.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -6,7 +6,6 @@ prefix ?= /usr bindir ?= $(prefix)/bin sysconfdir ?= /etc datadir ?= $(prefix)/share/$(PACKAGE) -abuildrepo ?= ~/.cache/abuild SCRIPTS := abuild abuild-keygen abuild-sign newapkbuild \ abump apkgrel buildlab apkbuild-cpan checkapk \ @@ -35,7 +34,6 @@ 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:@abuildrepo@:$(abuildrepo):g' SSL_CFLAGS ?= $(shell pkg-config --cflags openssl) SSL_LDFLAGS ?= $(shell pkg-config --cflags openssl) |