When i type pwd in the terminal i get: /Users/otusweb which is the path to my home directory
I should say that i put the camino stuff on a second hard drive, since my main hard drive does not have 2Gb of available space. Do i need to do anything special for that?
Olivier http://www-personal.si.umich.edu/~olivier/home/ On Nov 20, 2004, at 5:41 PM, Geoff Beier wrote:
The first line of your output:usage: dirname pathIndicates that dirname is being called with no argument. The only place dirname is used in camino.mk, it's called with the cwd as an argument:
ROOTDIR := $(shell dirname $(CWD))
CWD is set here:
CWD := $(shell pwd)
ifeq "$(CWD)" "/" CWD := /. endif
So if cwd is blank, that means that pwd is returning nothing from your
shell. What shell are you using? Have you tried with bash or tcsh? What does
pwd do normally on your system?
Anyway, I'd suspect that this is the source of your troubles.
HTH,
Geoff
_______________________________________________ Camino mailing list [EMAIL PROTECTED] http://mozdev.org/mailman/listinfo/camino
_______________________________________________ Camino mailing list [EMAIL PROTECTED] http://mozdev.org/mailman/listinfo/camino
