diff options
author | tron <tron> | 2001-12-19 15:35:40 +0000 |
---|---|---|
committer | tron <tron> | 2001-12-19 15:35:40 +0000 |
commit | dbc4245fbf9905456d0becc1708599ce4b460f01 (patch) | |
tree | 478c7f48480f6ffee5c4fc0e3527946c6f000eee /wm | |
parent | da6e5659cb80365b3de73e5d10dce13a9909fce1 (diff) | |
download | pkgsrc-dbc4245fbf9905456d0becc1708599ce4b460f01.tar.gz |
Define "DISTFILES" earlier so that the "fetch" target really works.
Diffstat (limited to 'wm')
-rw-r--r-- | wm/wmthemes/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/wm/wmthemes/Makefile b/wm/wmthemes/Makefile index 654f6bb39f2..888a33fcfdb 100644 --- a/wm/wmthemes/Makefile +++ b/wm/wmthemes/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2001/10/30 09:49:31 jmc Exp $ +# $NetBSD: Makefile,v 1.9 2001/12/19 15:35:40 tron Exp $ # # There is no distinfo file since the files change contents so often on the @@ -33,6 +33,11 @@ BUILD_DEFS+= WINDOWMAKER_THEMES WINDOWMAKER_THEMES?= FreeBSD-theme-0.52 +THEME_FILES= +.for FILE in ${WINDOWMAKER_THEMES} +THEME_FILES+= ${FILE}${EXTRACT_SUFX} +.endfor + do-install: @${RM} -f ${PLIST_SRC} @${TOUCH} ${PLIST_SRC} @@ -62,8 +67,3 @@ do-install: done .include "../../mk/bsd.pkg.mk" - -THEME_FILES= -.for FILE in ${WINDOWMAKER_THEMES} -THEME_FILES+= ${FILE}${EXTRACT_SUFX} -.endfor |