From 6a21e8027c455b06f30fd83c6215ad8c42ce2e85 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Sun, 21 Jul 2002 18:28:05 +0000 Subject: [PATCH] Fixed build on -CURRENT by replacing the matching but non-working 3.x hacks (each shell command must be preceded by a tab, not spaces) with the 4.x hacks (bsd.incs.mk soon to be merged). --- graphics/libflash/files/Makefile | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/graphics/libflash/files/Makefile b/graphics/libflash/files/Makefile index 58e8037fbdbc..e758fc453271 100644 --- a/graphics/libflash/files/Makefile +++ b/graphics/libflash/files/Makefile @@ -16,21 +16,7 @@ SRCS= adpcm.cc bitmap.cc button.cc character.cc cxform.cc \ INCS= flash.h NOMAN= YES LIBDIR= ${LOCALBASE}/lib -INCDIR= ${LOCALBASE}/include +INCSDIR= ${LOCALBASE}/include +INCDIR= ${INCSDIR} # for pre-bsd.incs.mk API .include - -# For FreeBSD 3.x or older -.if !target(_includeinstall) -_includeinstall: -.if defined(INCS) -.for header in ${INCS} - cd ${.CURDIR} && \ - ${INSTALL} -C -o ${INCOWN} -g ${INCGRP} -m ${INCMODE} \ - ${header} ${DESTDIR}${INCDIR} - -.endfor -.endif - -beforeinstall: _includeinstall -.endif