Module Name:    src
Committed By:   sjg
Date:           Mon Sep 13 21:31:59 UTC 2010

Modified Files:
        src/usr.bin/make: meta.c

Log Message:
tools/make/buildmake.sh compiles *.c, make sure meta.c does nothing
unless USE_META is defined.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/usr.bin/make/meta.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/make/meta.c
diff -u src/usr.bin/make/meta.c:1.2 src/usr.bin/make/meta.c:1.3
--- src/usr.bin/make/meta.c:1.2	Mon Sep 13 20:34:21 2010
+++ src/usr.bin/make/meta.c	Mon Sep 13 21:31:59 2010
@@ -28,6 +28,7 @@
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
  */
+#if defined(USE_META)
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
@@ -957,3 +958,5 @@
     }
     fclose(fp);
 }
+
+#endif	/* USE_META */

Reply via email to