aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2005-02-04 20:43:09 +0000
committerJustin Erenkrantz <jerenkrantz@apache.org>2005-02-04 20:43:09 +0000
commitfcd1a6089c45240b3702944fcf3804cc044208fa (patch)
tree8b5b3d4ee3eb46bf3ef2ab9bb51d47bf9a16d0e0
parente5e0884af3c52223ae4dea27e139f9d02feb2f93 (diff)
downloadapr-fcd1a6089c45240b3702944fcf3804cc044208fa.tar.gz
apr-fcd1a6089c45240b3702944fcf3804cc044208fa.zip
* build/jlibtool.c: Update to ignore --tag if CC or CXX are the values.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@151411 13f79535-47bb-0310-9956-ffa450edef68
-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;
}