Commit ec4a4730 authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Did not belong in r170253; evalute this patch seperately from
  the win32 /Oy- patch.  Will recommit for seperate discussion.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@170380 13f79535-47bb-0310-9956-ffa450edef68
parent 363ca897
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -468,15 +468,13 @@ if ($opt_i or $opt_e) {
    my @cmds = ();
    my $f;
    foreach $f (@args) {
        #  ack all potential gcc, hp/ux, win32+os2+aix and os/x extensions
        if ($f !~ m#(\.so$|\.la$|\.sl$|\.dll$|\.dylib$|)#) {
        if ($f !~ m#(\.so$|\.la$)#) {
            error("file $f is not a shared object");
            exit(1);
        }
        my $t = $f;
        $t =~ s|^.+/([^/]+)$|$1|;
        #  use .so unambigiously for installed shared library modules
        $t =~ s|\.[^./\\]+$|\.so|;
        $t =~ s|\.la$|\.so|;
        if ($opt_i) {
	    push(@cmds, "$installbuilddir/instdso.sh SH_LIBTOOL='" .
                 "$libtool' $f $CFG_LIBEXECDIR");