The first line of your output: > usage: dirname path Indicates 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
