ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
April 17th, 2024 | 14:30-16:00 SGT (UTC+8) | Online

Wireshark-dev: Re: [Wireshark-dev] RTP Muxing with compressed header

From: Ed Beroset <beroset@xxxxxxxxxxxxxx>
Date: Wed, 17 Feb 2010 08:35:42 -0500 (GMT-05:00)
>
>This is the error...
>
>sourabh@debian:~/wireshark-1.3.1/epan/dissectors$ make
>Makefile:6666: *** commands commence before first target.  Stop.

That's a classic symptom of having a tab character in front of a non-command line.  Make sure there are no tabs on any of the empty lines, e.g. line 6656 and 6663 and that none of the non-command lines start with a tab (lines 6657 and 6664).  Also, make sure that you haven't mixed Unix-mode and DOS-mode line endings in any of the files (CR vs CRLF).  If none of that helps, run automake and configure (from the top directory) to force things to be regenerated from Makefile.am and Makefile.common.

Ed