After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 114948 - make install fails at gst-libs/ext/ffmpeg
make install fails at gst-libs/ext/ffmpeg
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins
git master
Other opensolaris
: Normal minor
: 0.6.3
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2003-06-11 17:09 UTC by Hidetoshi Tajima
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
patch to remove double make stuff (585 bytes, patch)
2003-06-11 17:49 UTC, Ronald Bultje
none Details | Review

Description Hidetoshi Tajima 2003-06-11 17:09:48 UTC
This is when ffmpeg is not present on the system.

The Makefile.am there has:

# on running make install, make sure make has been run first
install:
        cd ffmpeg && $(MAKE)

This case, configure.ac has set USE_FFMPEG to FALSE, hence, FFMPEG_DIR is
being set to NONE in the Makefile here. In spite that, due to the above
install rule, "make install" unnecessarilly does:

 cd ffmpeg && make

and causes the failure.
Comment 1 Ronald Bultje 2003-06-11 17:49:30 UTC
Created attachment 17463 [details] [review]
patch to remove double make stuff
Comment 2 Ronald Bultje 2003-06-11 17:50:42 UTC
It's pretty broken to do the action performed by 'make' twice, once in
make and another time on make install. Just referring to the old one
is much easier. The above patch does that (or tries to), does that fix it?
Comment 3 Hidetoshi Tajima 2003-06-11 18:02:38 UTC
Yes. Thanks.
Comment 4 Ronald Bultje 2003-06-18 11:09:52 UTC
Applied to HEAD/0.6.x.