diff options
author | jkim <jkim@FreeBSD.org> | 2010-10-14 23:31:58 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2010-10-14 23:31:58 +0000 |
commit | 14375cfe0483dbaa81b0c610f8f7de3ec2e65dba (patch) | |
tree | 165b412e77bb844bab4e157561c0b5709bc502e5 /sys/conf | |
parent | 6b87db6229949831f7144c5f9eb26333841b9fe8 (diff) | |
download | FreeBSD-src-14375cfe0483dbaa81b0c610f8f7de3ec2e65dba.zip FreeBSD-src-14375cfe0483dbaa81b0c610f8f7de3ec2e65dba.tar.gz |
Stop hard coding nm(1) and make it overridable.
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/files.amd64 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/conf/files.amd64 b/sys/conf/files.amd64 index ec7ffb5..a3b113b 100644 --- a/sys/conf/files.amd64 +++ b/sys/conf/files.amd64 @@ -87,7 +87,7 @@ acpi_wakecode.h optional acpi \ clean "acpi_wakecode.h" acpi_wakedata.h optional acpi \ dependency "acpi_wakecode.o" \ - compile-with 'nm -n --defined-only acpi_wakecode.o | while read offset dummy what; do echo "#define $${what} 0x$${offset}"; done > ${.TARGET}' \ + compile-with '${NM} -n --defined-only acpi_wakecode.o | while read offset dummy what; do echo "#define $${what} 0x$${offset}"; done > ${.TARGET}' \ no-obj no-implicit-rule before-depend \ clean "acpi_wakedata.h" # |