diff options
author | Simon Tatham <anakin@pobox.com> | 2017-05-18 18:50:08 +0100 |
---|---|---|
committer | Simon Tatham <anakin@pobox.com> | 2017-05-18 18:50:08 +0100 |
commit | 8574dcc8c56971345a688a61a8d2022f4cc000cc (patch) | |
tree | 6a4fb55c21431d394875f562fdc6d3fd84a3ee4f | |
parent | 2cab25bf140eff04aef44b87e5a2ac791cc74c30 (diff) | |
download | wix-on-linux-8574dcc8c56971345a688a61a8d2022f4cc000cc.tar.gz wix-on-linux-8574dcc8c56971345a688a61a8d2022f4cc000cc.tar.bz2 wix-on-linux-8574dcc8c56971345a688a61a8d2022f4cc000cc.zip |
Rename the libraries to remove the extra ".so" in the names.
I don't know why those strange names seemed necessary to start with
and now don't seem to be. I probably changed something subtle
somewhere without noticing.
-rw-r--r-- | Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index 786ca13..951eb9d 100644 --- a/Makefile.am +++ b/Makefile.am | |||
@@ -2,12 +2,12 @@ libdir = $(bindir) | |||
2 | 2 | ||
3 | ACLOCAL_AMFLAGS = -I m4 | 3 | ACLOCAL_AMFLAGS = -I m4 |
4 | 4 | ||
5 | lib_LTLIBRARIES = libwinterop.so.la libmsi.so.la libpreload.la | 5 | lib_LTLIBRARIES = libwinterop.la libmsi.la libpreload.la |
6 | 6 | ||
7 | libwinterop_so_la_SOURCES = fake-winterop.c makecab.c memory.c \ | 7 | libwinterop_la_SOURCES = fake-winterop.c makecab.c memory.c memory.h \ |
8 | memory.h dupstr.c dupstr.h subproc.c subproc.h uchars.c uchars.h | 8 | dupstr.c dupstr.h subproc.c subproc.h uchars.c uchars.h |
9 | 9 | ||
10 | libmsi_so_la_SOURCES = makemsi.c md5.c memory.c memory.h version.c \ | 10 | libmsi_la_SOURCES = makemsi.c md5.c memory.c memory.h version.c \ |
11 | dupstr.c dupstr.h subproc.c subproc.h uchars.c uchars.h | 11 | dupstr.c dupstr.h subproc.c subproc.h uchars.c uchars.h |
12 | 12 | ||
13 | libpreload_la_SOURCES = preload.c | 13 | libpreload_la_SOURCES = preload.c |