Unbreak the build. In a clean www/ tree ${FLIST} doens't exist during

the first run, so ``DATA != cat ${FLIST}'' can't really work.

Submitted by:	edwin
Pointy hat:	keramida
This commit is contained in:
Giorgos Keramidas 2007-05-15 21:53:43 +00:00
parent 3992c00318
commit cd136d5bcc
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=30191

View file

@ -1,4 +1,4 @@
# $FreeBSD$
# $FreeBSD: www/en/multimedia/Makefile,v 1.1 2007/05/15 21:30:41 keramida Exp $
.if exists(../Makefile.conf)
.include "../Makefile.conf"
@ -20,7 +20,11 @@ FHTML = \
FLIST = multimedia.created
FSCRIPT = multimedia.pl
.if exists(${FLIST})
DATA!= cat ${FLIST}
.else
DATA= ${INDEXLINK}
.endif
all: ${FLIST}