mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
[build] Fix some library install issues
Removed a bogus dependency from libQFecs, and fixed the order of ui libraries. This takes care of some first-time make install issues. Libtool needs the libraries to be specified in dependency order.
This commit is contained in:
parent
eb8fc0fb9a
commit
e2464ed879
2 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
include libs/ecs/test/Makemodule.am
|
||||
|
||||
ecs_deps=libs/models/libQFmodels.la libs/util/libQFutil.la
|
||||
ecs_deps=libs/util/libQFutil.la
|
||||
|
||||
lib_LTLIBRARIES += libs/ecs/libQFecs.la
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
include libs/ui/test/Makemodule.am
|
||||
|
||||
lib_LTLIBRARIES += \
|
||||
libs/ui/libQFgui.la \
|
||||
libs/ui/libQFui.la
|
||||
libs/ui/libQFui.la \
|
||||
libs/ui/libQFgui.la
|
||||
|
||||
gui_deps = \
|
||||
libs/ui/libQFui.la
|
||||
|
|
Loading…
Reference in a new issue