diff options
author | grant <grant@pkgsrc.org> | 2003-02-17 20:58:19 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-02-17 20:58:19 +0000 |
commit | a25ed7d30d6f5212ff6e058474208c7ed2a5e8e6 (patch) | |
tree | 717453c80e2353c13fb0c28c351fd2e85606850b /www/apache | |
parent | 909552f85669e6040aaaba7d74e2fd490a914dae (diff) | |
download | pkgsrc-a25ed7d30d6f5212ff6e058474208c7ed2a5e8e6.tar.gz |
set the default source files to *.c, as this is common in our apache
modules.
Diffstat (limited to 'www/apache')
-rw-r--r-- | www/apache/module.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/www/apache/module.mk b/www/apache/module.mk index 639d16970da..64efe111340 100644 --- a/www/apache/module.mk +++ b/www/apache/module.mk @@ -1,4 +1,4 @@ -# $NetBSD: module.mk,v 1.2 2003/02/17 17:47:52 grant Exp $ +# $NetBSD: module.mk,v 1.3 2003/02/17 20:58:19 grant Exp $ # # This Makefile fragment is intended to be included by packages that build # and install apache modules. @@ -16,7 +16,8 @@ # APACHE_MODULE_SRCDIR the location of the source files for this module, # defaults to WRKSRC. # -# APACHE_MODULE_SRC the source files to be compiled for this module. +# APACHE_MODULE_SRC the source files to be compiled for this +# module, defaults to *.c. # .if !defined(_APACHE_MODULE_MK) @@ -26,6 +27,7 @@ APACHE_MODULE= # defined .include "../../www/apache/buildlink2.mk" APACHE_MODULE_SRCDIR?= ${WRKSRC} +APACHE_MODULE_SRC?= *.c apache-module-build: ${_PKG_SILENT}${_PKG_DEBUG} \ |