diff options
author | Guy Harris <guy@alum.mit.edu> | 2020-03-02 17:07:43 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2020-03-02 17:07:43 -0800 |
commit | 273c23a52e9793c7f96b1b631db52587ef0e0c4a (patch) | |
tree | d37684d1323829ac6ac9c6c286d3e0b4de4f0caa | |
parent | a2c5888cf6b6541a587789ee1f88ef862afd4c1c (diff) | |
download | tcpdump-273c23a52e9793c7f96b1b631db52587ef0e0c4a.tar.gz |
$srcdir suffices.
It's "the name of the top source directory, assuming that the working
directory is the top build directory"; when running the configure
script, the working directory will, in fact, be the top build directory.
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -9124,7 +9124,7 @@ $as_echo "$as_me: executing $ac_file commands" >&6;} case $ac_file$ac_mode in "default-1":C) if test -f .devel; then echo timestamp > stamp-h - cat $ac_top_srcdir/Makefile-devel-adds >> Makefile + cat $srcdir/Makefile-devel-adds >> Makefile make depend fi ;; diff --git a/configure.ac b/configure.ac index 7c8ea351..1fb36e2b 100644 --- a/configure.ac +++ b/configure.ac @@ -992,7 +992,7 @@ AC_CONFIG_HEADER(config.h) AC_OUTPUT_COMMANDS([if test -f .devel; then echo timestamp > stamp-h - cat $ac_top_srcdir/Makefile-devel-adds >> Makefile + cat $srcdir/Makefile-devel-adds >> Makefile make depend fi]) AC_OUTPUT(Makefile tcpdump.1) |