sos!
Michelle Konzack
linux4michelle at tamay-dogan.net
Sun May 24 08:15:31 EDT 2009
What does
which sed
return? Usualy it is "/bin/sed" and if so, do a
cd /home/vaish/Desktop/pidgin-2.3.1/
then do a
grep -R "/usr/bin/sed" *
if it retunn one or two files, you can modify it manualy, bit if the pig
is hardcoded in millions of locations, then call this script:
----[ STDIN ]-----------------------------------------------------------
#!/bin/sh
for FILE in $(find -type f) ; do
if [ -n "$(grep /usr/bin/sed ${FILE}" ] ; then
sed 's|/usr/bin/sed|/bin/sed|g' ${FILE} >${FILE}.tmp
if [ $? -eq 0 ] ; then
mv -f ${FILE}.tmp ${FILE}
else
rm -f ${FILE}.tmp
fi
fi
done
------------------------------------------------------------------------
Thanks, Greetings and nice Day/Evening
Michelle Konzack
Systemadministrator
25.9V Electronic Engineer
Tamay Dogan Network
Debian GNU/Linux Consultant
Am 2009-05-24 17:15:41, schrieb Meenu Lakshmy:
> hey guys
> We got the following error while trying make...
> any help please?? asap!
> REALLY REALLY new to this!!!
>
>
> make[2]: Entering directory
> `/home/vaish/Desktop/pidgin-2.3.1/pidgin/plugins/cap'
> /bin/sh ../../../libtool --silent --tag=CC --mode=compile gcc
> -DHAVE_CONFIG_H -I. -I../../.. -DDATADIR=\"/usr/local/share\"
> -I../../../libpurple -I../../../libpurple -I../../../pidgin -Wall
> -Waggregate-return -Wcast-align -Wdeclaration-after-statement -Wendif-labels
> -Werror-implicit-function-declaration -Wextra -Wno-sign-compare
> -Wno-unused-parameter -Winit-self -Wmissing-declarations -Wmissing-noreturn
> -Wmissing-prototypes -Wnested-externs -Wpointer-arith -Wundef
> -Wp,-D_FORTIFY_SOURCE=2 -I/usr/include/cairo -I/usr/include/freetype2
> -I/usr/include/libpng12 -I/opt/gnome/include/gtk-2.0
> -I/opt/gnome/lib/gtk-2.0/include -I/opt/gnome/include/atk-1.0
> -I/opt/gnome/include/pango-1.0 -I/opt/gnome/include/glib-2.0
> -I/opt/gnome/lib/glib-2.0/include -g -g -O2 -MT cap.lo -MD -MP -MF
> .deps/cap.Tpo -c -o cap.lo cap.c
> ../../../libtool: 389: /usr/bin/sed: not found
> ../../../libtool: 389: /usr/bin/sed: not found
> ../../../libtool: 911: /usr/bin/sed: not found
> : ignoring unknown tag
> ../../../libtool: 911: /usr/bin/sed: not found
> *** Warning: inferring the mode of operation is deprecated.
> *** Future versions of Libtool will require --mode=MODE be specified.
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> ../../../libtool: 7005: /usr/bin/sed: not found
> : compile: cannot determine name of library object from `'
> make[2]: *** [cap.lo] Error 1
> make[2]: Leaving directory
> `/home/vaish/Desktop/pidgin-2.3.1/pidgin/plugins/cap'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/home/vaish/Desktop/pidgin-2.3.1/pidgin/plugins'
> make: *** [all-recursive] Error 1
> _______________________________________________
> Support mailing list
> Support at pidgin.im
> http://pidgin.im/cgi-bin/mailman/listinfo/support
------------------------ END OF REPLIED MESSAGE ------------------------
--
Linux-User #280138 with the Linux Counter, http://counter.li.org/
##################### Debian GNU/Linux Consultant #####################
<http://www.tamay-dogan.net/> Michelle Konzack
<http://www.can4linux.org/> Apt. 917
<http://www.flexray4linux.org/> 50, rue de Soultz
Jabber linux4michelle at jabber.ccc.de 67100 Strasbourg/France
IRC #Debian (irc.icq.com) Tel. DE: +49 177 9351947
ICQ #328449886 Tel. FR: +33 6 61925193
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.pgp
Type: application/pgp-signature
Size: 189 bytes
Desc: Digital signature
URL: <http://pidgin.im/pipermail/support/attachments/20090524/bafb446d/attachment.sig>
More information about the Support
mailing list