You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by pq...@apache.org on 2008/12/05 06:29:06 UTC

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

Author: pquerna
Date: Thu Dec  4 21:29:05 2008
New Revision: 723590

URL: http://svn.apache.org/viewvc?rev=723590&view=rev
Log:
jlibtool: Eat the '-release $someNumber' params that libtool 'supports' and we use in apr-util (why?)

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

Modified: apr/apr/trunk/build/jlibtool.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/build/jlibtool.c?rev=723590&r1=723589&r2=723590&view=diff
==============================================================================
--- apr/apr/trunk/build/jlibtool.c (original)
+++ apr/apr/trunk/build/jlibtool.c Thu Dec  4 21:29:05 2008
@@ -1536,6 +1536,10 @@
                     /* Skip the argument. */
                     ++a;
                     argused = 1;
+                } else if (strcmp(arg+1, "release") == 0) {
+                    /* Skip the argument. */
+                    ++a;
+                    argused = 1;
                 } else if (strcmp(arg+1, "undefined") == 0) {
                     cmd_data->undefined_flag = argv[++a];
                     argused = 1;