Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Oct 2019 16:18:50 +0000 (UTC)
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r353013 - head/sys/modules/hptmv
Message-ID:  <201910021618.x92GIodT050036@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: markj
Date: Wed Oct  2 16:18:50 2019
New Revision: 353013
URL: https://svnweb.freebsd.org/changeset/base/353013

Log:
  Harmonize the hptmv blob's build rule with that of other hpt* drivers.
  
  No functional change intended.
  
  Reviewed by:	emaste
  MFC after:	1 week
  Differential Revision:	https://reviews.freebsd.org/D21866

Modified:
  head/sys/modules/hptmv/Makefile

Modified: head/sys/modules/hptmv/Makefile
==============================================================================
--- head/sys/modules/hptmv/Makefile	Wed Oct  2 16:09:28 2019	(r353012)
+++ head/sys/modules/hptmv/Makefile	Wed Oct  2 16:18:50 2019	(r353013)
@@ -13,14 +13,8 @@ SRCS+= bus_if.h device_if.h pci_if.h
 SRCS+= mv.c entry.c ioctl.c hptproc.c gui_lib.c
 OBJS+= hptmvraid.o
 
-.if $(MACHINE_CPUARCH) == "amd64"
-HPTMV_RAID_O = amd64-elf.raid.o.uu
-.else
-HPTMV_RAID_O = i386-elf.raid.o.uu
-.endif
-
-hptmvraid.o:	${HPTMV}/$(HPTMV_RAID_O)
-	uudecode -p < ${HPTMV}/$(HPTMV_RAID_O) > ${.TARGET}
+hptmvraid.o:
+	uudecode -p < ${HPTMV}/${MACHINE_CPUARCH}-elf.raid.o.uu > ${.TARGET}
 
 #
 # Debug Options:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910021618.x92GIodT050036>