1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-10-29 18:07:27 +01:00

Ensure make.sh returns success

This commit is contained in:
James Lee 2012-01-27 16:37:48 -07:00
parent 8108bf888e
commit 5be58513f9
2 changed files with 6 additions and 2 deletions

View File

@ -443,7 +443,11 @@ else # !arm
# Enable recent IA friendly memory routines (such as for Atom)
# These will not work on the earlier x86 machines
libc_common_cflags += -mtune=i686 -DUSE_SSSE3 -DUSE_SSE2
#libc_common_cflags += -mtune=i686 -DUSE_SSSE3 -DUSE_SSE2
# egypt: compile for 386 so meterpreter will have a chance of working on
# older processors
libc_common_cflags += -march=i386
endif # x86
endif # !arm

2
external/source/meterpreter/source/bionic/libc/out/x86/make.sh vendored Normal file → Executable file
View File

@ -17,4 +17,4 @@ gcc -Wl,--hash-style=sysv -nostdinc -nostdlib -shared -o libbionic.so flood/*.o
rm -rf flood >/dev/null
exit 0