summaryrefslogtreecommitdiff
path: root/build/jlibtool.c
diff options
context:
space:
mode:
authorjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2005-02-04 20:43:09 +0000
committerjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2005-02-04 20:43:09 +0000
commit9ed91d6391d85c9e6c401dcf826e16460512668d (patch)
tree8b5b3d4ee3eb46bf3ef2ab9bb51d47bf9a16d0e0 /build/jlibtool.c
parent26c6d90dfa6f008eaf2935605baacb97513a8724 (diff)
downloadlibapr-9ed91d6391d85c9e6c401dcf826e16460512668d.tar.gz
* 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
Diffstat (limited to 'build/jlibtool.c')
-rw-r--r--build/jlibtool.c10
1 files changed, 9 insertions, 1 deletions
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;
}