Check-in Number:
|
4457 | |
Date: |
2004-Mar-19 16:43:49 (local)
2004-Mar-19 15:43:49 (UTC) |
User: | thl |
Branch: | |
Comment: |
get rid of "AC_CONFIG_SUBDIRS: you should use literals" warning |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/fsl/configure.ac 1.16 -> 1.17
--- configure.ac 2004/01/09 10:48:26 1.16
+++ configure.ac 2004/03/19 15:43:49 1.17
@@ -93,7 +93,9 @@
dnl # post-processing for subdirs
AC_SUBST(LIB_DEPS)
-AC_CONFIG_SUBDIRS([$SUBDIR_L2 $SUBDIR_CFG $SUBDIR_PCRE])
+if test ".$SUBDIR_L2" != .; then AC_CONFIG_SUBDIRS(lib_l2) fi
+if test ".$SUBDIR_CFG" != .; then AC_CONFIG_SUBDIRS(lib_cfg) fi
+if test ".$SUBDIR_PCRE" != .; then AC_CONFIG_SUBDIRS(lib_pcre) fi
dnl # output generation
AC_CONFIG_HEADERS(config.h)
|
|