diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:29 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:55:29 +0000 |
commit | f58a97d3de5b43fd2cf8c0928939241b7b01c67d (patch) | |
tree | 4891542955626efe83bf431c67414e4901d33e74 /buildlib/environment.mak.in | |
parent | 70fbac25ae36f62b99a9df1a4a7742a47a8d91ec (diff) |
Moved time handling, fixed makefiles
Author: jgg
Date: 1999-12-10 07:21:52 GMT
Moved time handling, fixed makefiles
Diffstat (limited to 'buildlib/environment.mak.in')
-rw-r--r-- | buildlib/environment.mak.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/buildlib/environment.mak.in b/buildlib/environment.mak.in index 6d721c711..e7545bac8 100644 --- a/buildlib/environment.mak.in +++ b/buildlib/environment.mak.in @@ -39,8 +39,10 @@ HAVE_STATVFS = @HAVE_STATVFS@ # Shared library things HOST_OS = @host_os@ ifeq ($(HOST_OS),linux-gnu) - ONLYSHAREDLIBS = yes SONAME_MAGIC=-Wl,-soname -Wl, LFLAGS_SO= +else + # Do not know how to creat shared libraries here. + ONLYSTATICLIBS = yes endif - + |