Commit c6d68ea2 authored by Joe Orton's avatar Joe Orton
Browse files

* support/apxs.in: Ensure that only a .la target filename is passed on

the libtool link line otherwise libtool tries to link statically.

PR: 31448 (more)


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105310 13f79535-47bb-0310-9956-ffa450edef68
parent edbf46a9
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -375,11 +375,12 @@ if ($opt_c) {
            $dso_file =~ s|\.[^.]+$|.la|;
        }
        else {
            $dso_file = "mod_unknown.so";
            $dso_file = "mod_unknown.la";
        }
    }
    else {
        $dso_file = $opt_o;
        $dso_file =~ s|\.[^.]+$|.la|;
    }

    #   create compilation commands