diff options
author | Adam Heath <doogie@debian.org> | 2001-05-27 19:48:28 +0000 |
---|---|---|
committer | Adam Heath <doogie@debian.org> | 2001-05-27 19:48:28 +0000 |
commit | 54d38602f12d3177ae2781402d60d08c33bffb78 (patch) | |
tree | 8a3374c9f49d77ff78bc167c68b64706c437a4d4 /split | |
parent | 74b0a9cac3286f7e6c502604bc0399ad36e51a03 (diff) | |
download | dpkg-54d38602f12d3177ae2781402d60d08c33bffb78.tar.gz |
Discovered that if anything in optlib/ was actually needed, it wasn't being
included. Modified LDFLAGS to include -L../optlib, and moved -ldpkg and
-loptlib to LDFLAGS as well.
Diffstat (limited to 'split')
-rw-r--r-- | split/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/split/Makefile.in b/split/Makefile.in index 27f55ba2a..1f8cd9db3 100644 --- a/split/Makefile.in +++ b/split/Makefile.in @@ -41,7 +41,7 @@ install-doc: $(INSTALL_DATA) $(srcdir)/dpkg-split.8 $(DESTDIR)/$(man8dir) dpkg-split: $(SPLIT_OBJECTS) - $(CC) $(LDFLAGS) -L../lib -o $@ $(SPLIT_OBJECTS) $(LIBS) $(NLS_LIBS) -ldpkg + $(CC) $(LDFLAGS) -o $@ $(SPLIT_OBJECTS) $(LIBS) $(NLS_LIBS) split.o: split.c $(CC) $(ALL_CFLAGS) -DMKSPLITSCRIPT=\"$(dpkglibdir)/mksplit\" -c $< |