You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by je...@apache.org on 2005/02/04 21:43:12 UTC

svn commit: r151411 - apr/apr/trunk/build/jlibtool.c

Author: jerenkrantz
Date: Fri Feb  4 12:43:09 2005
New Revision: 151411

URL: http://svn.apache.org/viewcvs?view=rev&rev=151411
Log:
* build/jlibtool.c: Update to ignore --tag if CC or CXX are the values.

Modified:
    apr/apr/trunk/build/jlibtool.c

Modified: apr/apr/trunk/build/jlibtool.c
URL: http://svn.apache.org/viewcvs/apr/apr/trunk/build/jlibtool.c?view=diff&r1=151410&r2=151411
==============================================================================
--- apr/apr/trunk/build/jlibtool.c (original)
+++ apr/apr/trunk/build/jlibtool.c Fri Feb  4 12:43:09 2005
@@ -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 @@
         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;
     }