mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-30 06:36:34 +00:00
toolchain/binutils: make sure target-binutils runs after busybox
Closes #597 Ensure that binutils-target runs after busybox if enabled, so it can overwrite the busybox symlink for ar if that applet is enabled. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
6aac003abf
commit
b71951b0e7
5
CHANGES
5
CHANGES
@ -18,8 +18,8 @@
|
|||||||
ncftp, ncurses, netkittelnet, netsnmp, ntfs-3g, openntp, openssl, php,
|
ncftp, ncurses, netkittelnet, netsnmp, ntfs-3g, openntp, openssl, php,
|
||||||
python, quagga, radvd, rsync, samba, sawman, sdl, shared-mime-info,
|
python, quagga, radvd, rsync, samba, sawman, sdl, shared-mime-info,
|
||||||
spawn-fcgi, speech-tools, sqlite, squashfs, synergy, syslinux,
|
spawn-fcgi, speech-tools, sqlite, squashfs, synergy, syslinux,
|
||||||
tcpdump, u-boot, util-linux, valgrind, vsftpd, wipe, wpa-supplicant,
|
target-binutils, tcpdump, u-boot, util-linux, valgrind, vsftpd, wipe,
|
||||||
xdata_xcursor-themes, zlib
|
wpa-supplicant, xdata_xcursor-themes, zlib
|
||||||
|
|
||||||
Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4
|
Removed package: mdnsresponder, mpatrol, gcc 3.4.6 + 4.0.4
|
||||||
|
|
||||||
@ -34,6 +34,7 @@
|
|||||||
#565: libevent: Bump version and clean up makefile
|
#565: libevent: Bump version and clean up makefile
|
||||||
#587: Use iptables multipurpose binaries and bump to 1.4.4
|
#587: Use iptables multipurpose binaries and bump to 1.4.4
|
||||||
#593: Missing early check for patch(1)
|
#593: Missing early check for patch(1)
|
||||||
|
#597: (REOP) Selecting busybox in buildroot's config clobbers ar ...
|
||||||
#609: libmicrohttpd: New package
|
#609: libmicrohttpd: New package
|
||||||
#615: python: Don't delete .py files unless asked
|
#615: python: Don't delete .py files unless asked
|
||||||
#617: netkit/inetd requires RPC and fails to build if RPC is disabled
|
#617: netkit/inetd requires RPC and fails to build if RPC is disabled
|
||||||
|
@ -175,6 +175,13 @@ endif
|
|||||||
-$(STRIPCMD) $(TARGET_DIR)/usr/$(REAL_GNU_TARGET_NAME)/bin/* > /dev/null 2>&1
|
-$(STRIPCMD) $(TARGET_DIR)/usr/$(REAL_GNU_TARGET_NAME)/bin/* > /dev/null 2>&1
|
||||||
-$(STRIPCMD) $(TARGET_DIR)/usr/bin/* > /dev/null 2>&1
|
-$(STRIPCMD) $(TARGET_DIR)/usr/bin/* > /dev/null 2>&1
|
||||||
|
|
||||||
|
# If both binutils-target and busybox are selected, make certain binutils
|
||||||
|
# gets to run after busybox, so it can overwrite the busybox symlink for
|
||||||
|
# ar if enabled
|
||||||
|
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
||||||
|
BINUTILS_TARGET_PREREQ += busybox
|
||||||
|
endif
|
||||||
|
|
||||||
binutils_target: $(BINUTILS_TARGET_PREREQ) $(TARGET_DIR)/usr/bin/ld
|
binutils_target: $(BINUTILS_TARGET_PREREQ) $(TARGET_DIR)/usr/bin/ld
|
||||||
|
|
||||||
binutils_target-clean:
|
binutils_target-clean:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user