pkgsrc-Bugs archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: pkg/38964: lang/pcc fails to install after building from source



The following reply was made to PR pkg/38964; it has been noted by GNATS.

From: "Jeremy C. Reed" <reed%reedmedia.net@localhost>
To: gnats-bugs%NetBSD.org@localhost
Cc: 
Subject: Re: pkg/38964: lang/pcc fails to install after building from source
Date: Mon, 16 Jun 2008 19:07:49 -0500 (CDT)

 On Mon, 16 Jun 2008, cberardi24%gmail.com@localhost wrote:
 
 > /usr/bin/install -c -s -o root -g wheel -m 555 cpp /usr/pkg/libexec
 > install: cpp: stat: No such file or directory
 > *** Error code 1
 
 This is known. The binaries aren't built earlier.
 
 On some systems it works and sometimes it doesn't. Here it is:
 
 SUBDIR=cc cpp ccom
 
 all: ${SUBDIR}
 
 install:
         cd cc && ${MAKE} install
         cd cpp && ${MAKE} install
         cd ccom && ${MAKE} install
 
 
 Should it be:
 
 all:
        cd cc && ${MAKE}
        cd cpp && ${MAKE}
        cd ccom && ${MAKE}
 
 
 instead?
 
 What is wrong with use above?
 


Home | Main Index | Thread Index | Old Index