diff options
author | Timo Teräs <timo.teras@iki.fi> | 2016-11-04 13:58:37 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-11-04 13:58:37 +0000 |
commit | b64085f066a5bce4a37b4508cbca1d2b05703061 (patch) | |
tree | cd9b8ca8cc7f43c896e6d6d909cca2ca38937382 /community | |
parent | 644080177bb14909e475b10f24939224cea74424 (diff) | |
download | aports-b64085f066a5bce4a37b4508cbca1d2b05703061.tar.bz2 aports-b64085f066a5bce4a37b4508cbca1d2b05703061.tar.xz |
community/sleuthkit: move CFLAGS to be before configure
Diffstat (limited to 'community')
-rw-r--r-- | community/sleuthkit/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/sleuthkit/APKBUILD b/community/sleuthkit/APKBUILD index 34bc707df7..850a9de87f 100644 --- a/community/sleuthkit/APKBUILD +++ b/community/sleuthkit/APKBUILD @@ -35,9 +35,9 @@ prepare() { build() { cd "$_builddir" - ./configure --prefix=/usr # https://github.com/sleuthkit/sleuthkit/issues/642 export CFLAGS="$CFLAGS -DHAVE_LIBEWF_V2_API -Dlibewf_handle_read_random=libewf_handle_read_buffer_at_offset" + ./configure --prefix=/usr make || return 1 } |