Check-in Number:
|
4450 | |
Date: |
2004-Mar-19 15:52:03 (local)
2004-Mar-19 14:52:03 (UTC) |
User: | thl |
Branch: | |
Comment: |
get rid of "AC_CONFIG_SUBDIRS: you should use literals" warning |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/lmtp2nntp/configure.ac 1.34 -> 1.35
--- configure.ac 2003/02/12 16:13:27 1.34
+++ configure.ac 2004/03/19 14:52:03 1.35
@@ -161,7 +161,15 @@
export enable_shared
enable_headline=no
export enable_headline
-AC_CONFIG_SUBDIRS([$SUBDIR_EX $SUBDIR_STR $SUBDIR_L2 $SUBDIR_SA $SUBDIR_VAR $SUBDIR_VAL $SUBDIR_POPT $SUBDIR_PCRE $SUBDIR_TAI])
+if test ".$SUBDIR_EX" != .; then AC_CONFIG_SUBDIRS(lib_ex) fi
+if test ".$SUBDIR_STR" != .; then AC_CONFIG_SUBDIRS(lib_str) fi
+if test ".$SUBDIR_L2" != .; then AC_CONFIG_SUBDIRS(lib_l2) fi
+if test ".$SUBDIR_SA" != .; then AC_CONFIG_SUBDIRS(lib_sa) fi
+if test ".$SUBDIR_VAR" != .; then AC_CONFIG_SUBDIRS(lib_var) fi
+if test ".$SUBDIR_VAL" != .; then AC_CONFIG_SUBDIRS(lib_val) fi
+if test ".$SUBDIR_POPT" != .; then AC_CONFIG_SUBDIRS(lib_popt) fi
+if test ".$SUBDIR_PCRE" != .; then AC_CONFIG_SUBDIRS(lib_pcre) fi
+if test ".$SUBDIR_TAI" != .; then AC_CONFIG_SUBDIRS(lib_tai) fi
dnl # standard output generation
AC_CONFIG_HEADERS(config.h)
|
|