[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
files under build-aux/ are forgotten to be distributed
From: |
Bruno Haible |
Subject: |
files under build-aux/ are forgotten to be distributed |
Date: |
Thu, 19 Jul 2007 01:44:50 +0200 |
User-agent: |
KMail/1.5.4 |
Hi,
In the hello-2.3 tarball the gnulib/lib/Makefile.am references
build-aux/link-warning.h, but this file is not included in the tarball!
This should fix it:
2007-07-18 Bruno Haible <address@hidden>
* gnulib-tool (func_get_automake_snippet): Synthesize also an
EXTRA_DIST augmentation for files in build-aux/.
*** gnulib-tool 14 Jul 2007 01:42:14 -0000 1.248
--- gnulib-tool 18 Jul 2007 23:41:36 -0000
***************
*** 1223,1228 ****
--- 1223,1239 ----
fi
;;
esac
+ # Synthesize an EXTRA_DIST augmentation also for the files in
build-aux/.
+ buildaux_files=`for f in $all_files; do \
+ case $f in \
+ build-aux/*) echo $f ;; \
+ esac; \
+ done | sed -e 's,^build-aux/,,'`
+ if test -n "$buildaux_files"; then
+ sed_prepend_auxdir='s,^,$(top_srcdir)/'"$auxdir"'/,'
+ echo "EXTRA_DIST += "`echo "$buildaux_files" | sed -e
"$sed_prepend_auxdir"`
+ echo
+ fi
;;
esac
}
- files under build-aux/ are forgotten to be distributed,
Bruno Haible <=