Skip to content

Commit

Permalink
AC_CONFIG_SUBDIRS needs subdirs, who'd of thunk it
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Apr 10, 2017
1 parent 257902d commit f28ba72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -14702,7 +14702,7 @@ for bar in $MODULES; do
done
for foo in `find "${srcdir}"/src/lib/ -type f -name configure`; do
mysubdirs="$mysubdirs $foo"
mysubdirs="$mysubdirs $(dirname $foo)"
done
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -2119,7 +2119,7 @@ dnl ############################################################
dnl # Find any support libraries we need to build
dnl #############################################################
for foo in `find "${srcdir}"/src/lib/ -type f -name configure`; do
mysubdirs="$mysubdirs $foo"
mysubdirs="$mysubdirs $(dirname $foo)"
done

dnl #
Expand Down

0 comments on commit f28ba72

Please sign in to comment.