aboutsummaryrefslogtreecommitdiff
path: root/graphics/aalib
diff options
context:
space:
mode:
authorOKAZAKI Tetsurou <okazaki@FreeBSD.org>2002-01-19 22:53:18 +0000
committerOKAZAKI Tetsurou <okazaki@FreeBSD.org>2002-01-19 22:53:18 +0000
commitb6181f89f37d93d64a634665626c2c374526cd9a (patch)
treefe0a64df2189b7411688b7ef0b4db3991131afd4 /graphics/aalib
parentb82dba46e9538b78811de06258e5b707fa03f5e5 (diff)
downloadports-b6181f89f37d93d64a634665626c2c374526cd9a.tar.gz
ports-b6181f89f37d93d64a634665626c2c374526cd9a.zip
Fix a building error.
Don't update the timestamp of "${WRKSRC}/acconfig.h". PR: 33680
Notes
Notes: svn path=/head/; revision=53363
Diffstat (limited to 'graphics/aalib')
-rw-r--r--graphics/aalib/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/aalib/Makefile b/graphics/aalib/Makefile
index 9c381b37035e..25a90c7e022b 100644
--- a/graphics/aalib/Makefile
+++ b/graphics/aalib/Makefile
@@ -28,7 +28,7 @@ CONFIGURE_ARGS= --with-x=no
post-patch:
@${RM} -f ${WRKSRC}/config.cache
@${PERL} -pi -e 's|/usr/local|${LOCALBASE}|g' ${WRKSRC}/configure
- @find ${WRKSRC} -name '*.[ch]' | xargs ${PERL} -pi -e \
- 's|<malloc.h>|<stdlib.h>|g'
+ @find ${WRKSRC} \( -name '*.[ch]' \! -name acconfig.h \) \
+ | xargs ${PERL} -pi -e 's|<malloc.h>|<stdlib.h>|g'
.include <bsd.port.mk>