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 519235 - make clean twice produces some error messages
make clean twice produces some error messages
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-libav
git master
Other Linux
: Normal minor
: 0.10.4
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2008-02-28 09:55 UTC by Josep Torra Valles
Modified: 2008-05-08 09:18 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Josep Torra Valles 2008-02-28 09:55:04 UTC
I noticed that if I run make clean twice in the gst-ffmpeg code some error messages are generated in the second make clean. 

A new autogen run is required to be able compile the code again.

Example of the error messages:

cd ffmpeg && make distclean
make[4]: Entering directory `/home/jep/cvs/gst-ffmpeg/gst-libs/ext/ffmpeg'
Makefile:5: config.mak: No such file or directory
cc -I -I -I/libavutil -I/libavcodec -I/libavformat -I/libswscale -I/libavdevice -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_ISOC9X_SOURCE -DHAVE_AV_CONFIG_H  -MM vhook/fish.c vhook/null.c vhook/watermark.c vhook/drawtext.c vhook/imlib2.c vhook/ppm.c | sed 's,^\([a-z]\),vhook/\1,' > .vhookdep
vhook/fish.c:47:23: error: framehook.h: No such file or directory
vhook/fish.c:48:21: error: dsputil.h: No such file or directory
vhook/fish.c:49:22: error: avformat.h: No such file or directory
vhook/fish.c:50:21: error: swscale.h: No such file or directory
vhook/null.c:23:23: error: framehook.h: No such file or directory
vhook/null.c:24:21: error: swscale.h: No such file or directory
vhook/watermark.c:61:20: error: common.h: No such file or directory
vhook/watermark.c:62:22: error: avformat.h: No such file or directory
vhook/watermark.c:64:23: error: framehook.h: No such file or directory
vhook/watermark.c:65:22: error: cmdutils.h: No such file or directory
vhook/watermark.c:66:21: error: swscale.h: No such file or directory
vhook/drawtext.c:48:23: error: framehook.h: No such file or directory
vhook/drawtext.c:61:10: error: #include espera "NOM_DE_FITXER" o <NOM_DE_FITXER>
vhook/drawtext.c:62:10: error: #include espera "NOM_DE_FITXER" o <NOM_DE_FITXER>
vhook/imlib2.c:48:23: error: framehook.h: No such file or directory
vhook/imlib2.c:49:21: error: swscale.h: No such file or directory
vhook/imlib2.c:61:18: error: eval.h: No such file or directory
vhook/ppm.c:28:23: error: framehook.h: No such file or directory
vhook/ppm.c:29:22: error: avformat.h: No such file or directory
vhook/ppm.c:30:21: error: swscale.h: No such file or directory
vhook/ppm.c:31:22: error: avstring.h: No such file or directory
/version.sh 
make[4]: /version.sh: Command not found
make[4]: *** No rule to make target `config.mak'.  Stop.
make[4]: Leaving directory `/home/jep/cvs/gst-ffmpeg/gst-libs/ext/ffmpeg'
make[3]: *** [clean-local] Error 2
make[3]: Leaving directory `/home/jep/cvs/gst-ffmpeg/gst-libs/ext'
make[2]: *** [clean-recursive] Error 1
make[2]: Leaving directory `/home/jep/cvs/gst-ffmpeg/gst-libs/ext'
make[1]: *** [clean-recursive] Error 1
make[1]: Leaving directory `/home/jep/cvs/gst-ffmpeg/gst-libs'
make: *** [clean-recursive] Error 1
Comment 1 Edward Hervey 2008-05-08 09:18:51 UTC
2008-05-08  Edward Hervey  <edward.hervey@collabora.co.uk>

	* gst-libs/ext/Makefile.am:
	Use 'make clean' and not 'make dist-clean' for local cleanups.
	Fixes #519235