From c05680c5589a203ea2ec22a88026a8d2f2315623 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Fri, 25 Nov 2011 11:00:17 +0100 Subject: [PATCH] configure.ac: only create interface/Makefile if user has clang This allows users without clang to perform a "make dist". Signed-off-by: Sven Verdoolaege --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f5aaaa1..f8683dd 100644 --- a/configure.ac +++ b/configure.ac @@ -165,7 +165,9 @@ AC_CONFIG_HEADERS(isl_config.h) AC_CONFIG_HEADERS(include/isl/config.h) AC_CONFIG_FILES(Makefile) AC_CONFIG_FILES(doc/Makefile) -AC_CONFIG_FILES(interface/Makefile) +if test $with_clang = system; then + AC_CONFIG_FILES(interface/Makefile) +fi AC_CONFIG_FILES([bound_test.sh], [chmod +x bound_test.sh]) AC_CONFIG_FILES([pip_test.sh], [chmod +x pip_test.sh]) AC_CONFIG_COMMANDS_POST([ -- 2.7.4