|
Description
|
When running "dmake" from usr/src/uts, I get this:
*** Error code 1
The following command caused the error:
cd sparc; pwd; dmake def
dmake: Fatal error: Command failed for target `sparc'
Current working directory /workspace/davemq/contig/usr/src/uts
Working my way back up in the output, I see
dmake: Fatal error: Don't know how to make target `def'
Current working directory /workspace/davemq/contig/usr/src/uts/sparc/smbfs
*** Error code 1
The following command caused the error:
cd smbfs; pwd; dmake def
dmake: Fatal error: Command failed for target `smbfs'
Current working directory /workspace/davemq/contig/usr/src/uts/sparc
Sure enough, usr/src/uts/sparc/smbfs/Makefile doesn't have a 'def' target. The 'def' target should be in the
Makefile before the 'all' target. See usr/src/uts/sparc/zfs/Makefile as an example.
|