Bläddra i källkod

Add support for %gnu in host_os checking for shared lib...
Author: doogie
Date: 2003-02-09 20:27:13 GMT
Add support for %gnu in host_os checking for shared library support(fixes
netbsdelf-gnu).

Arch Librarian 22 år sedan
förälder
incheckning
fa9bbc704b
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      buildlib/environment.mak.in

+ 1 - 1
buildlib/environment.mak.in

@@ -55,7 +55,7 @@ NEED_SOCKLEN_T_DEFINE = @NEED_SOCKLEN_T_DEFINE@
 
 # Shared library things
 HOST_OS = @host_os@
-ifneq ($(words $(filter linux-gnu gnu%,$(HOST_OS))),0)
+ifneq ($(words $(filter linux-gnu gnu% %gnu,$(HOST_OS))),0)
    SONAME_MAGIC=-Wl,-soname -Wl,
    LFLAGS_SO=
 else