From: Paul Eggert <eggert@cs.ucla.edu>
To: Petr Hracek <phracek@redhat.com>
Cc: 20124@debbugs.gnu.org
Subject: bug#20124: Building emacs and libjpeg not found on Fedora 22
Date: Tue, 17 Mar 2015 23:41:34 -0700 [thread overview]
Message-ID: <55091E1E.2090207@cs.ucla.edu> (raw)
In-Reply-To: <5507F81E.1070704@redhat.com>
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.
next prev parent reply other threads:[~2015-03-18 6:41 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-17 9:47 bug#20124: Building emacs and libjpeg not found on Fedora 22 Petr Hracek
2015-03-17 9:57 ` Petr Hracek
2015-03-17 11:02 ` Eli Zaretskii
2015-03-17 11:35 ` Petr Hracek
2015-03-17 12:37 ` Eli Zaretskii
2015-03-18 12:29 ` Petr Hracek
2015-03-18 6:41 ` Paul Eggert [this message]
2015-03-18 6:48 ` Glenn Morris
2015-03-23 7:24 ` Paul Eggert
2015-03-23 16:18 ` Glenn Morris
2015-03-23 17:37 ` Paul Eggert
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=55091E1E.2090207@cs.ucla.edu \
--to=eggert@cs.ucla.edu \
--cc=20124@debbugs.gnu.org \
--cc=phracek@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).