tech-pkg archive

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

lang/python25/Makefile PLIST_SRC definition



Hi,

why is PLIST_SRC defined this way

PLIST_SRC=      ${.CURDIR}/../../lang/python25/PLIST.common
.if exists(${.CURDIR}/../../lang/python25/PLIST.${OPSYS})
PLIST_SRC+=     ${.CURDIR}/../../lang/python25/PLIST.${OPSYS}
.endif
PLIST_SRC+=     ${.CURDIR}/../../lang/python25/PLIST.common_end


and not the following way?

PLIST_SRC=      ${.CURDIR}/PLIST.common
.if exists(${.CURDIR}/PLIST.${OPSYS})
PLIST_SRC+=     ${.CURDIR}/PLIST.${OPSYS}
.endif
PLIST_SRC+=     ${.CURDIR}/PLIST.common_end


I'm using my personal sub directory within pkgsrc (wip_cl/python25). Therefor 
the directory ${.CURDIR}/../../lang/python25/ does not exist. Changing the 
Makefile to  the second definition provides a working Makefile e.g. in the wip 
area, too.

Bye
Christian

-- 
Christian Leutloff, Aachen, Germany
_______________________________________________________________
Schon gehört? Der neue WEB.DE MultiMessenger kann`s mit allen: 
http://www.produkte.web.de/messenger/?did=3016



Home | Main Index | Thread Index | Old Index