Hi all,
I am getting the below cut and paste error when I execute the make command .I
did find the make command and added its path in the .profile.
Can any body help me why this error is coming ??
-bash-3.00$ make
Making all in srclib
Making all in apr
Making all in apr-util
Making all in xml/expat
/bin/bash ../libtool --mode=link gcc -version-info 1:0:1 -g -O2 -o
libexpat.la -rpath /export/home/qa_eng/httpd-2.2.8/lib xmlparse.lo xmltok.lo
xmlrole.lo
rm -fr .libs/libexpat.so .libs/libexpat.so.0 .libs/libexpat.so.0.1.0
gcc -shared -Wl,-h -Wl,libexpat.so.0 -o .libs/libexpat.so.0.1.0
.libs/xmlparse.o .libs/xmltok.o .libs/xmlrole.o -lc
(cd .libs && rm -f libexpat.so.0 && ln -s libexpat.so.0.1.0 libexpat.so.0)
(cd .libs && rm -f libexpat.so && ln -s libexpat.so.0.1.0 libexpat.so)
false cru .libs/libexpat.a xmlparse.o xmltok.o xmlrole.o
*** Error code 1
make: Fatal error: Command failed for target `libexpat.la'
Current working directory
/export/home/qa_eng/httpd-2.2.8/srclib/apr-util/xml/expat/lib
*** Error code 1
The following command caused the error:
list='lib'; \
for dir in $list; do \
cd $dir; make; cd ..; \
done
make: Fatal error: Command failed for target `build-subdirs'
Current working directory
/export/home/qa_eng/httpd-2.2.8/srclib/apr-util/xml/expat
*** Error code 1
The following command caused the error:
otarget=`echo all-recursive | sed s/-recursive//`; \
list='xml dbd dbm encoding hooks buckets misc crypto uri strmatch dbm/sdbm ldap
xlate xml/expat'; \
for i in $list; do \
if test -f "$i/Makefile"; then \
target="$otarget"; \
echo "Making $target in $i"; \
if test "$i" = "."; then \
made_local=yes; \
target="local-$target"; \
fi; \
(cd $i && make $target) || exit 1; \
fi; \
done; \
if test "$otarget" = "all" && test -z "libaprutil-1.la aprutil.exp";
then \
made_local=yes; \
fi; \
if test "$made_local" != "yes"; then \
make "local-$otarget" || exit 1; \
fi
make: Fatal error: Command failed for target `all-recursive'
Current working directory /export/home/qa_eng/httpd-2.2.8/srclib/apr-util
*** Error code 1
The following command caused the error:
otarget=`echo all-recursive|sed s/-recursive//`; \
list=' apr apr-util pcre '; \
for i in $list; do \
if test -d "$i"; then \
target="$otarget"; \
echo "Making $target in $i"; \
if test "$i" = "."; then \
made_local=yes; \
target="local-$target"; \
fi; \
(cd $i && make $target) || exit 1; \
fi; \
done; \
if test "$otarget" = "all" && test -z ''; then \
made_local=yes; \
fi; \
if test "$made_local" != "yes"; then \
make "local-$otarget" || exit 1; \
fi
make: Fatal error: Command failed for target `all-recursive'
Current working directory /export/home/qa_eng/httpd-2.2.8/srclib
*** Error code 1
The following command caused the error:
otarget=`echo all-recursive|sed s/-recursive//`; \
list=' srclib os server modules support'; \
for i in $list; do \
if test -d "$i"; then \
target="$otarget"; \
echo "Making $target in $i"; \
if test "$i" = "."; then \
made_local=yes; \
target="local-$target"; \
fi; \
(cd $i && make $target) || exit 1; \
fi; \
done; \
if test "$otarget" = "all" && test -z 'httpd '; then \
made_local=yes; \
fi; \
if test "$made_local" != "yes"; then \
make "local-$otarget" || exit 1; \
fi
make: Fatal error: Command failed for target `all-recursive'
-bash-3.00$
Thanks
Narendra