summaryrefslogtreecommitdiff
path: root/libarchive/Makefile
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2009-11-15 18:32:03 +0100
committerTomas Bzatek <tbzatek@users.sourceforge.net>2009-11-15 18:32:03 +0100
commitcb3baab306e5951dc3a176fd9061f596a05b4729 (patch)
tree1074fd193e9be7e62aa431effde391213705fc36 /libarchive/Makefile
parentc10a5c533a5b71c03f0e8d52dea81eb77dbebfd7 (diff)
downloadtuxcmd-modules-cb3baab306e5951dc3a176fd9061f596a05b4729.tar.xz
Rebase libarchive to 2.7.1
Diffstat (limited to 'libarchive/Makefile')
-rw-r--r--libarchive/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/libarchive/Makefile b/libarchive/Makefile
index b375dfb..85cad7e 100644
--- a/libarchive/Makefile
+++ b/libarchive/Makefile
@@ -3,7 +3,7 @@ DESTDIR = /usr
INSTALL=install -c
INSTALL_DATA = ${INSTALL} -m 644
DIR_COMMON=../common/
-DIR_LIBARCHIVE=./libarchive-2.5.5
+DIR_LIBARCHIVE=./libarchive-2.7.1
# compiler options
CC = gcc
@@ -41,7 +41,7 @@ lib_libarchive_compile:
@which uudecode > /dev/null || exit 1;
@if test ! -f "$(DIR_LIBARCHIVE)/.libs/libarchive.a"; then \
echo "Building libarchive..."; echo; \
- (cd "$(DIR_LIBARCHIVE)" && ./configure --enable-static --disable-shared --disable-bsdtar --disable-bsdcpio --with-pic && $(MAKE)) || exit 1; \
+ (cd "$(DIR_LIBARCHIVE)" && CFLAGS="-Wall" ./configure --enable-static --disable-shared --disable-bsdtar --disable-bsdcpio --with-pic && $(MAKE)) || exit 1; \
echo; echo "Libarchive build successful"; echo; \
fi;