Port recent autogen.sh changes to Darwin
Problem reported by Sam Steingold (Bug#25347). * autogen.sh: Don't assume 'sed -f-' reads a script from stdin, as POSIX does not require it and it does not work on Darwin.
This commit is contained in:
parent
2ec41c415f
commit
44c588a25c
1 changed files with 4 additions and 1 deletions
|
@ -223,7 +223,10 @@ Please report any problems with this script to bug-gnu-emacs@gnu.org .'
|
|||
|
||||
## Create nt/gnulib.mk if it doesn't exist, as autoreconf will need it.
|
||||
if test ! -f nt/gnulib.mk; then
|
||||
sed '/^[^#]/s|^.*$|/^## begin *gnulib module &/,/^## end *gnulib module &/c ## gnulib module & removed|' nt/gnulib-modules-to-delete.cfg | sed -f- lib/gnulib.mk > nt/gnulib.mk
|
||||
echo 'Inferring nt/gnulib.mk from lib/gnulib.mk ...'
|
||||
metascript='/^[^#]/s|^.*$|/^## begin *gnulib module &/,/^## end *gnulib module &/c ## gnulib module & removed|'
|
||||
script=`sed "$metascript" nt/gnulib-modules-to-delete.cfg` || exit
|
||||
sed "$script" lib/gnulib.mk > nt/gnulib.mk || exit
|
||||
fi
|
||||
|
||||
echo "Running 'autoreconf -fi -I m4' ..."
|
||||
|
|
Loading…
Add table
Reference in a new issue