Sponsored Content
Top Forums UNIX for Dummies Questions & Answers make and make install commands Post 37933 by cbkihong on Wednesday 2nd of July 2003 11:22:42 AM
Old 07-02-2003
Are there any more error messages before this?

The message only tells the make on the default target failed, but giving no indication of what actually failed
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

make install

Hi all, I am trying to install pam_passwdqc-1.0.2 on my Solaris 9 machines. After I did a make, I did a make install but it returns the follwing output, # /usr/ccs/bin/make install mkdir -p /lib/security install -c -m 755 pam_passwdqc.so /lib/security install: The -c, -f, -n options each... (2 Replies)
Discussion started by: stancwong
2 Replies

2. 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

3. Shell Programming and Scripting

How to make a script out of commands

Hi, I have a very basic knowledge of Unix and I need your help for a small script that will do the following commands that I do manually by just giving the filename TPR20080414.txt cut -d'|' -f3,4 TPR20080414.txt> oe_012.lkp awk -F "|" '{temp=$1;$1=$2;$2=temp}1' OFS="|" oe_012.lkp >... (3 Replies)
Discussion started by: sickboy
3 Replies

4. UNIX for Dummies Questions & Answers

problems using 'make' install

I am tring to install DBD::Oracle on Solaris 9 box, I issued command type cc type gcc but both are not found. then i manually searched for gcc, i found it and create a symbolic link to it in my directory. $ perl Makefile.pl (works ok) $ make (retuns error below) LD_RUN_PATH="" cc -G... (1 Reply)
Discussion started by: jameskay
1 Replies

5. UNIX for Dummies Questions & Answers

Cannot use Make commands

I just cant use any of the make commands. Any ideas? I already tried adding the path of the make command in my profile But nothing happened The error returned is Make: Could not read current directory. Stop. Please help me on this. (1 Reply)
Discussion started by: khestoi
1 Replies

6. UNIX for Dummies Questions & Answers

install C compiler without make

Hi all, I dont have much knowledge about linux, but want to learn. I have installed Plop linux(PLoP - Home) on USB Flashdrive. I want to install gcc compiler to it. The installation of C compiler ask for make command, which is not found in the distribution. When I tried to install gnu make,... (4 Replies)
Discussion started by: johnsmithgr8
4 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. UNIX for Dummies Questions & Answers

Difference between configure/make/make install.

Hi, While installation of apache on linux, we perform the below tasks. 1) Untar 2) configure 3) make 4) make install. I wanted to understand the difference and working of configure/make/make install. Can any one help me understanding this? Thanks in advance. (1 Reply)
Discussion started by: praveen_b744
1 Replies

9. UNIX for Dummies Questions & Answers

make 3.82 install help

Hello. This is what I get when I try to install Todd-Sheppards-Computer:~/make-3.82 toddsheppard$ sudo make install Password: Making install in glob make: Nothing to be done for `install-exec-am'. make: Nothing to be done for `install-data-am'. Making install in config make: Nothing to be... (3 Replies)
Discussion started by: 240shep19
3 Replies

10. Fedora

Make check install and make all install

hi dear i want to know what is different between make check install and make all install? thanks in advane fereshte (3 Replies)
Discussion started by: komijani
3 Replies
t_error(3xti)															     t_error(3xti)

Name
       t_error - produces error message

Syntax
       #include <xti.h>

       int t_error(errmsg)
       char *errmsg;
       extern char *t_errlist[];
       extern int t_nerr;

Arguments
       errmsg	 Is a user-supplied error message that gives context to the error.

Description
       The  function  produces a message on the standard error output that describes the last error encountered during a call to a transport func-
       tion.

       The function prints the user-supplied error message followed by a colon and a standard error message  for  the  current	error  defined	in
       t_errno. If t_errno is [TSYSERR], also prints a standard message for the current value contained in errno.

       To simplify variant formatting of messages, the array of message strings t_errlist is provided: t_errno can be used as an index in this ta-
       ble to get the message string without the newline. The t_nerr is the largest message number provided for in the t_errlist table.

       The t_errno variable is set only when an error occurs and is not cleared on successful calls.

       --------------------------------------
       Parameters   Before Call   After Call
       --------------------------------------
       errmsg	    x		  /
       --------------------------------------

Examples
       If a function fails on transport endpoint fd2 because a bad address was given, the following call may follow the failure:
       t_error ("t_connect failed on fd"):

       The diagnostic message to be printed would look like:
       t_connect failed on fd2: Incorrect transport address format
       where "Incorrect transport address format" identifies the specific error that occurred, and "t_connect failed on fd2" tells the user  which
       function failed on which transport endpoint.

Return Values
       Upon successful completion, a value of 0 is returned. On failure, a value of -1 is returned, and t_errno is set to indicate the error.

Diagnostics
       On failure, t_errno is set to the following:

       [TNOTSUPPORT]	   This function is not supported by the current implementation of XTI.

																     t_error(3xti)
All times are GMT -4. The time now is 10:56 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy