diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-06-08 15:14:17 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-06-08 15:14:17 +0000 |
commit | 45271fd084172192684c7922e0bbb199aa30335f (patch) | |
tree | 1fb82acc1af86b4286382518346efcbdb98e31fd | |
parent | dbc12876abe80c8c728ca8ba9e364120d008bba4 (diff) |
use top_dir instead of ../
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 4f4ed81f4..6353b833d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -11,8 +11,8 @@ INCLUDES = -I$(top_srcdir)/include bin_PROGRAMS = curl curl_SOURCES = main.c hugehelp.c urlglob.c -curl_LDADD = ../lib/libcurl.a -curl_DEPENDENCIES = ../lib/libcurl.a +curl_LDADD = $(top_srcdir)/lib/libcurl.a +curl_DEPENDENCIES = $(top_srcdir)/lib/libcurl.a BUILT_SOURCES = hugehelp.c CLEANFILES = hugehelp.c NROFF=@NROFF@ |