GNU bug report logs -
#20124
Building emacs and libjpeg not found on Fedora 22
Previous Next
Reported by: Petr Hracek <phracek <at> redhat.com>
Date: Tue, 17 Mar 2015 09:48:01 UTC
Severity: normal
Tags: moreinfo
Done: Paul Eggert <eggert <at> cs.ucla.edu>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
I guess the following part of the 'configure' script isn't working as expected:
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
$EGREP "version= *(6[2-9]|[7-9][0-9])" >/dev/null 2>&1; then :
The call to $EGREP is failing, so the 'then' part doesn't execute. $EGREP
should succeed here. Please try to figure that out, e.g., by replacing the
above with something like the following:
echo "$ac_cpp conftest.$ac_ext" >test1.out
echo "$EGREP 'version= *(6[2-9]|[7-9][0-9])'" >test2.out
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | tee test3.out |
$EGREP "version= *(6[2-9]|[7-9][0-9])" >/dev/null 2>&1; then :
and then re-run ./configure and inspect test1.out, test2.out, test3.out to see
if they can help you figure out why $EGREP is failing here.
This bug report was last modified 10 years and 121 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.