From 9ed91d6391d85c9e6c401dcf826e16460512668d Mon Sep 17 00:00:00 2001 From: jerenkrantz Date: Fri, 4 Feb 2005 20:43:09 +0000 Subject: * build/jlibtool.c: Update to ignore --tag if CC or CXX are the values. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@151411 13f79535-47bb-0310-9956-ffa450edef68 --- build/jlibtool.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'build/jlibtool.c') diff --git a/build/jlibtool.c b/build/jlibtool.c index 39520aad0..b20966403 100644 --- a/build/jlibtool.c +++ b/build/jlibtool.c @@ -1,4 +1,5 @@ -/* Copyright 2000-2004 The Apache Software Foundation +/* Copyright 2000-2005 The Apache Software Foundation or its licensors, as + * applicable. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -516,6 +517,13 @@ int parse_long_opt(char *arg, command_t *cmd_data) printf("Sorry. No help available.\n"); } else if (strcmp(var, "config") == 0) { print_config(); + } else if (strcmp(var, "tag") == 0) { + if (strcmp(value, "CC") == 0) { + /* Do nothing. */ + } + if (strcmp(value, "CXX") == 0) { + /* Do nothing. */ + } } else { return 0; } -- cgit v1.2.1