diff options
author | ru <ru@FreeBSD.org> | 2002-07-22 02:28:05 +0800 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-07-22 02:28:05 +0800 |
commit | d0823c893433d5fe5f09393e196a5079e357bb32 (patch) | |
tree | 90d9492561d0b17537397f3000374c2623e0ba68 /graphics/libflash | |
parent | 8023d85f3714bfbaa1df5742aa04412406eccc43 (diff) | |
download | freebsd-ports-gnome-d0823c893433d5fe5f09393e196a5079e357bb32.tar.gz freebsd-ports-gnome-d0823c893433d5fe5f09393e196a5079e357bb32.tar.zst freebsd-ports-gnome-d0823c893433d5fe5f09393e196a5079e357bb32.zip |
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).
Diffstat (limited to 'graphics/libflash')
-rw-r--r-- | graphics/libflash/files/Makefile | 18 |
1 files 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 <bsd.lib.mk> - -# 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 |