From 529b5c137e68060ea9ec9ba9a68d07d4b5f0b595 Mon Sep 17 00:00:00 2001 From: Marcel Moolenaar Date: Mon, 8 Jun 2015 19:45:24 +0000 Subject: [PATCH] Move contrib/top/top.X to contrib/top/top.xs and move contrib/top/top.local.H to contrib/top/top.local.hs. This fixes a build breakage when src is on a case- insensitive file system -- we never properly create top.x nor top.local.h. Change the makefile accordingly. MFC after: 3 days --- contrib/top/{top.local.H => top.local.hs} | 0 contrib/top/{top.X => top.xs} | 0 usr.bin/top/Makefile | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename contrib/top/{top.local.H => top.local.hs} (100%) rename contrib/top/{top.X => top.xs} (100%) diff --git a/contrib/top/top.local.H b/contrib/top/top.local.hs similarity index 100% rename from contrib/top/top.local.H rename to contrib/top/top.local.hs diff --git a/contrib/top/top.X b/contrib/top/top.xs similarity index 100% rename from contrib/top/top.X rename to contrib/top/top.xs diff --git a/usr.bin/top/Makefile b/usr.bin/top/Makefile index 67ab20d8d79a..e7ace685a4f3 100644 --- a/usr.bin/top/Makefile +++ b/usr.bin/top/Makefile @@ -30,8 +30,8 @@ sigdesc.h: ${SIGCONV_AWK} ${SIGNAL_H} awk -f ${SIGCONV_AWK} < ${SIGNAL_H} > ${.TARGET} CLEANFILES+= top.local.h top.x -.SUFFIXES: .X .x .H .h -.X.x .H.h: +.SUFFIXES: .xs .x .hs .h +.xs.x .hs.h: @${ECHO} Making ${.TARGET} from ${.IMPSRC} @sed -e's,%LoadMax%,5.0,g' \ -e's,%TableSize%,20011,g' \