diff options
author | adamw <adamw@FreeBSD.org> | 2008-08-06 23:37:02 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2008-08-06 23:37:02 +0800 |
commit | 76f952f49753e8fb1239351ddde7c96ea62064c7 (patch) | |
tree | f894eb6b4f58a0790938cd4fa24afdbf8308475d /games | |
parent | 60d12b28370f4a98b325ee3c21405df9bd99acf7 (diff) | |
download | freebsd-ports-gnome-76f952f49753e8fb1239351ddde7c96ea62064c7.tar.gz freebsd-ports-gnome-76f952f49753e8fb1239351ddde7c96ea62064c7.tar.zst freebsd-ports-gnome-76f952f49753e8fb1239351ddde7c96ea62064c7.zip |
Move the do-install: target out from a conditional block. I have no
explanation for what the hell it was doing in there in the first place,
but it was probably someone else's fault.
This was, of course, identified and solved by the itetcutron.
Diffstat (limited to 'games')
-rw-r--r-- | games/secretmaryochronicles-music/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/secretmaryochronicles-music/Makefile b/games/secretmaryochronicles-music/Makefile index d1789eef462a..485cab9ba2bb 100644 --- a/games/secretmaryochronicles-music/Makefile +++ b/games/secretmaryochronicles-music/Makefile @@ -23,13 +23,13 @@ WRKSRC= ${WRKDIR} DATADIR= ${PREFIX}/share/smc NO_BUILD= yes -.if !defined(NOPORTDOCS) -PORTDOCS= Addon\ \-\ Music\ Readme.txt license.txt - do-install: ${MKDIR} ${DATADIR}/music ${CP} -R ${WRKSRC}/data/music/* ${DATADIR}/music/ +.if !defined(NOPORTDOCS) +PORTDOCS= Addon\ \-\ Music\ Readme.txt license.txt + post-install: ${MKDIR} ${DOCSDIR} .for f in ${PORTDOCS} |