Rpm issue with autoconf-2.63-1.AIX6.1.noarch.rpm


 
Thread Tools Search this Thread
Operating Systems AIX Rpm issue with autoconf-2.63-1.AIX6.1.noarch.rpm
# 1  
Old 06-15-2013
Rpm issue with autoconf-2.63-1.AIX6.1.noarch.rpm

dears

i am trying to install the autoconf-2.63-1.aix6.1.noarch.rpm but its shows the below error message .

Code:
P700_dev/svn/dependencies>rpm -i autoconf-2.63-1.aix6.1.noarch.rpm 
error: failed dependencies:
        m4 is needed by autoconf-2.63-1
P700_dev/svn/dependencies>


Last edited by zaxxon; 06-15-2013 at 08:39 AM..
# 2  
Old 06-15-2013
Quote:
Originally Posted by thecobra151
error: failed dependencies:
m4 is needed by autoconf-2.63-1
It is left as an exercise to the interested reader to decipher this absolutely unintelligible quote about "failed dependencies" along with a completely obfuscated specification which dependency is needed by the package to be installed.

~~shakes head in desparation...~~

I hope this helps.

bakunin
# 3  
Old 06-15-2013
download and install m4 package first into your system before installing autoconf ...
# 4  
Old 06-15-2013
Ha, oh, or maybe not then bakunin.
m4 required then, it is!
# 5  
Old 06-16-2013
i have slove the problem via
PHP Code:
rpm -i autoconf-2.63-1.aix6.1.noarch.rpm --nodeps 
thanks all
# 6  
Old 06-16-2013
Quote:
Originally Posted by thecobra151
i have slove the problem via
You haven't "solved" the problem, just circumvented it. The dependencies the autoconf package relies on still are not there, but you have disabled the checks.

If you have a broken light bulb, you have to replace it. Declaring darkness to be the standard just doesn't cut it.

I hope this helps.

bakunin
This User Gave Thanks to bakunin For This Post:
# 7  
Old 06-17-2013
Code:
If you have a broken light bulb, you have to replace it. Declaring darkness to be the standard just doesn't cut it.

LOL ;0)
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Issue while creating RPM

I am trying to create an RPM that basically creates a JBOss container. At the end it copies folders and files in a particular directory structure. /root/rpmbuild/SOURCES # tree cac-1.0 cac-1.0 └── opt └── msdp └── ca └── iam_cac ... (1 Reply)
Discussion started by: Junaid Subhani
1 Replies

2. Red Hat

Issue with rpm package

Hello I have Storage foundation 6.0 version to install in redhat 6.0, so while trying to install one of the application it say to install some dependencies packages so when i try to install the dependencies again it ask for the dependencies so its a lengthy process i say. so now can i get the... (1 Reply)
Discussion started by: cyrus.ranjith
1 Replies

3. AIX

Issue with installing rpm in AIX 6.1

I am trying to install an rpm : libiconv-1.14-1.aix5.1.ppc.rpm which is a dependency to install GIT. While I gave the command I got the foll message: root:user-> $ rpm -i -v libiconv-1.14-1.aix5.1.ppc.rpm libiconv-1.14-1 ar: Cannot open or remove a file containing a running program.... (2 Replies)
Discussion started by: gaugeta
2 Replies

4. Shell Programming and Scripting

How to make RPM not write to RPM database if RPM fails to deploy?

How to make RPM not write to RPM database if RPM fails to deploy? IE I create an rpm spec file that contains the following if then exit 1 fi My rpm will fail at deployment, but if I do rpm -qa , I can see the rpm in the rpm db (3 Replies)
Discussion started by: 3junior
3 Replies

5. Red Hat

RPM Installation & Removal issue

Hi, I created an RPM for one of our internal serer: tel-gw--2010.05.1.0-SNAPSHOT-1.rpm What happened I Installed for 5 times, and it get installed (/usr/tel-gw/) & added 5 entries into rpm db. And when I query RPM db as "rpm -qa | grep tel-gw--2010.05.1.0-SNAPSHOT-1", it shows 5 times in... (0 Replies)
Discussion started by: jw_amp
0 Replies

6. Shell Programming and Scripting

Extract RPM name from path to .rpm file

It's the end of the day and I just can't get my head around this. I'm trying to extract just the name of the RPM from the path to a .rpm file. So from: /home/me/rpm/RPMS/i386/nagios-our-plugins-1.2-6.i386.rpmI need to extract 'nagios-our-plugins'. I can't get the awk syntax right: awk '{... (5 Replies)
Discussion started by: aussieos
5 Replies

7. Red Hat

Source RPM issue

Hi, I have created one soruce rpm by using some help file on net. when i installed the rpm with command "rpm -i xxx.rpm", by default it got installed under "/usr/src/redhat/SOURCES/. I want to install these source file under /application/myapps/. Also i want some guidence to improve the source... (0 Replies)
Discussion started by: rajeshatbuzz
0 Replies

8. SuSE

How to install .src.rpm ? ( source rpm )

Hi, I have got few RPM's from rpmfind.net ( mainly gcc ). But it seems to be src files instead of the image. so I think we have to build the src files according to target machine using rpmbuild. Can any one help me with 1) Various options of rpm build that have to be taken care 2)... (3 Replies)
Discussion started by: Sivaswami
3 Replies

9. Linux

Converting source rpm to binary rpm

Hi, I need to install an rpm file,but I only have '.src.rpm' version of it. I want to convert it to a binary rpm. so I tried this rpm --rebuild somethin.src.rpm But I am gettin '--rebuild:Invalid option' as output Is there another way to rebuild source rpm.? Thanks in... (2 Replies)
Discussion started by: eamani_sun
2 Replies

10. Linux

Failed dependencies of rpm / how does RPM check for ?

Hey, I've a problem installing a package. rpm -ivh brings the errors: libjvm.so is needed by libverify.so is needed by But I have installed the Java SDK like requested and the files are on the disk. But I have no idea how to find out, why rpm cann't find them. I have also... (2 Replies)
Discussion started by: mod
2 Replies
Login or Register to Ask a Question