make[2]: *** [xml] Error 1


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users make[2]: *** [xml] Error 1
# 1  
Old 04-14-2008
Error make[2]: *** [xml] Error 1

Hi,

I am trying to build an rpm on redhat machine.

OS:Red Hat Enterprise Linux ES release 4 (Nahant Update 6)
after building when I try to install,after doing the 'configure' command,
when I run 'make',, its giving the following error.


[root@vrdevcti001 xmlstarlet-1.0.1]# make
make all-recursive
make[1]: Entering directory `/usr/src/redhat/BUILD/xmlstarlet-1.0.1'
Making all in src
make[2]: Entering directory `/usr/src/redhat/BUILD/xmlstarlet-1.0.1/src'
gcc -Wall -g -pedantic -o xml xml.o xml_edit.o xml_ls.o xml_escape.o xml_pyx.o xml_depyx.o xml_select.o xml_trans.o xml_validate.o xml_format.o xml
_elem.o xml_C14N.o trans.o binsert.o stack.o strdup.o /usr/lib/libxslt.a /usr/lib/libexslt.a -lz -lm -lpthread /usr/lib/libxml2.a -lz -lm -lpthread -l
dl -L/usr/lib
gcc: /usr/lib/libxslt.a: No such file or directory
gcc: /usr/lib/libexslt.a: No such file or directory
gcc: /usr/lib/libxml2.a: No such file or directory
make[2]: *** [xml] Error 1
make[2]: Leaving directory `/usr/src/redhat/BUILD/xmlstarlet-1.0.1/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/src/redhat/BUILD/xmlstarlet-1.0.1'
make: *** [all-recursive-am] Error 2


All the libxslt rpms are already installed.I think it need the file /usr/lib/libxslt.a and,, others...
How to get those files in the respective location?

Please revert to this post asap.. Thanks in advance.
# 2  
Old 04-14-2008
Long shot: do you have libxslt-dev?

I believe there is a tool for searching for which rpm would contain the necessary files. rpmseek.com suggests libxslt-devel or libxslt-static; my uninformed guess would support the former.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Make cmake_check_build_system error 1

......... (1 Reply)
Discussion started by: larry burns
1 Replies

2. UNIX Desktop Questions & Answers

Gtkmm Make Then Error

I would like to install gtkmm-2.0.1 on solaris 10 platform. To install, I have a dependency libsigc++1.2 successfully install. I can type ./configure without any error. But when I typed make I got the following error. I am newbie who cannot understand the error. Have no idea how to solve... (0 Replies)
Discussion started by: nirin
0 Replies

3. Linux

Error when using make file.

hello, i want to execute hello world using cross compiler ppc_4xx-gcc. i have this makefile: CC= $(shell which ppc_4xx-gcc) #CC=g++ CXXFLAGS=-cpp -Wall LDFLAGS= SOURCES=main.cpp hello.h OBJECTS=$(SOURCES:.cpp=.o) EXECUTABLE=hello all: $(SOURCES)... (5 Replies)
Discussion started by: walidaydi
5 Replies

4. Shell Programming and Scripting

Make file error

I am new to using make command and I keep getting this error time and again please help me Make file is as follows #ARCH := $(shell uname)# # ifeq ($(ARCH), SunOS) DEFINES = -KPIC -DSVR4 -DSOLARIS -DSYSV -D__svr4 -D__svr4__\ -D_REENTRANT -DSOLARIS2_5 -D_SVID_GETTOD -DXP_UNIX -UDEBUG... (1 Reply)
Discussion started by: c.operatingsys
1 Replies

5. Programming

Error with Make File

Hi All, I am using GNU Make and i have a peculiar kind of error, i am not able to understand, Firstly have a look at the make file used by me CFLAGS=-c -Wall CC=gcc .PHONY:clean OBJ=./obj SRC=./src INC=./inc exec: $(OBJ)/*.o $(CC) $^ -o $@ %.o: $(SRC)/*.c $(CC) $(CFLAGS)... (1 Reply)
Discussion started by: niranjanvg
1 Replies

6. Programming

Make error

Hello, Is someone know why this generate an error : all: dt = $(shell date) echo "$(dt)" (5 Replies)
Discussion started by: X-Or
5 Replies

7. Solaris

Gani Network Driver Won't Install - make: Fatal error: Don't know how to make targ...

I attached a README file that I will refer to. I successfully completed everything in the README file until step 4. # pwd /gani/gani-2.4.4 # ls COPYING Makefile.macros gem.c Makefile Makefile.sparc_gcc gem.h Makefile.amd64_gcc ... (1 Reply)
Discussion started by: Bradj47
1 Replies

8. Linux

Error in issuing a make and make install

Hi, Recently I install a package and try to do a make and make install. However, in the make it gives me below error:- make:Nothing to be done for 'install-exec-am' make:Nothing to be done for 'install-data-am' Can anyone please explain to me what does this mean? I have been trying... (1 Reply)
Discussion started by: ahjiefreak
1 Replies

9. Programming

Error while running C++ make file

The problem is that the original program was compiled using v5.0 MQ client but now we are using MQ client v5.3. Had modified the "make file" options as follows but still i could see the errors. #CLIENT_V5_LIBS = -limqb23ss -limqc23ss -lmqic -lmqmcs -lnsl -ldl CLIENT_V5.3_LIBS =... (1 Reply)
Discussion started by: hram
1 Replies

10. Programming

Error when running make

Hi , I get the following error when i run the make command. cc -Aa -DUNIX -osrcmpmn srcmpmn.c crt0: ERROR couldn't open /usr/lib/dld.sl errno:000000014 *** Error exit code 14 here the file is C program which has been modified. Please help. (1 Reply)
Discussion started by: shashidhara_01
1 Replies
Login or Register to Ask a Question