Skip to content

Commit

Permalink
Only one file for AC_CONFIG_SRCDIR. #4
Browse files Browse the repository at this point in the history
configure: error: cannot find sources (cidrl.c cidrl6.c) in . or ..

— Macro: AC_CONFIG_SRCDIR (unique-file-in-source-dir)

unique-file-in-source-dir is some file that is in the package's source
directory; configure checks for this file's existence to make sure that
the directory that it is told contains the source code in fact does.
Occasionally people accidentally specify the wrong directory with
--srcdir; this is a safety check. See configure Invocation, for more
information.

https://www.gnu.org/software/autoconf/manual/autoconf-2.67/html_node/Input.html
  • Loading branch information
bezborodow committed Mar 25, 2024
1 parent 7cb861f commit ef1d4d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

AC_PREREQ([2.71])
AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
AC_CONFIG_SRCDIR([cidrl.c,cidrl6.c])
AC_CONFIG_SRCDIR([cidrl.c])
AC_CONFIG_HEADERS([config.h])

# Checks for programs.
Expand Down

0 comments on commit ef1d4d2

Please sign in to comment.