From mboxrd@z Thu Jan 1 00:00:00 1970 From: bugzilla at busybox.net Date: Mon, 10 Sep 2012 20:05:14 +0000 (UTC) Subject: [Buildroot] [Bug 5378] dropbear Makefile broken In-Reply-To: References: Message-ID: <20120910200515.20F1A995FD@busybox.osuosl.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net https://bugs.busybox.net/show_bug.cgi?id=5378 --- Comment #5 from Mike Frysinger 2012-09-10 20:05:14 UTC --- (In reply to comment #1) it would be better to fix Makefile.in itself and then send the fix upstream (In reply to comment #2) make has implicit rules to handle "-lfoo" in its dependency list. so dropbear does this: dropbearobjs=$(COMMONOBJS) $(CLISVROBJS) $(SVROBJS) @CRYPTLIB@ ... dropbear: $(dropbearobjs) this expands into: dropbear: ... -lcrypt and make executes its implicit code to try and find /usr/lib/libcrypt.a. if you don't have that, it'll fail. -- Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.