Commit 0a01196e authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

thttpd: fix build, don't override CFLAGS at make time



We already provide the correct CFLAGS/LDFLAGS at configure time, so don't pass them
again at make time, as this then overrides the extra CFLAGS (defines) in the Makefile.

Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 87e55fee
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -24,8 +24,8 @@
	lmbench, lrzsz, ltrace, make, module-init-tools, mplayer,
	mysql_client, nbd, ncurses, neon, netcat, netperf, ntfsprogs,
	openssl, php, qt, quagga, sqlite, sdl, sdl_mixer, sdl_sound,
	sdl_ttf, squashfs, tn5250, tremor, usbutils, xkeyboard-config,
	xserver_xorg-server, xvkbd
	sdl_ttf, squashfs, thttpd, tn5250, tremor, usbutils,
	xkeyboard-config, xserver_xorg-server, xvkbd

	Removed packages: modutils, portage, rxvt

+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ $(THTTPD_DIR)/.configured: $(THTTPD_DIR)/.unpacked
	touch $(THTTPD_DIR)/.configured

$(THTTPD_DIR)/$(THTTPD_BINARY): $(THTTPD_DIR)/.configured
	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(THTTPD_DIR)
	$(MAKE) -C $(THTTPD_DIR)

$(TARGET_DIR)/$(THTTPD_TARGET_BINARY): $(THTTPD_DIR)/$(THTTPD_BINARY)
	install -D $(THTTPD_DIR)/$(THTTPD_BINARY) $(TARGET_DIR)/$(THTTPD_TARGET_BINARY)