Fix previous and make sure that we build PIE binaries.

(cherry picked from commit 1b9dd30d7b590e219cb51561f1e7371f4628575f)
This commit is contained in:
Juan RP 2012-09-04 11:38:21 +02:00
parent 886807687e
commit 6d6d31ccc0
2 changed files with 3 additions and 3 deletions

1
configure vendored
View File

@ -302,7 +302,6 @@ if [ $? -eq 0 ]; then
check_compiler_flag pie "" PROG_LDFLAGS
fi
if [ $? -eq 0 ]; then
echo "Building programs as PIE (Position Independent Executable)."
BUILD_PIE_VALUE=yes
else
BUILD_PIE_VALUE=no

View File

@ -49,6 +49,7 @@ $(BIN).static: $(OBJS)
$(BIN): $(OBJS)
@printf " [CCLD]\t\t$@\n"
${SILENT}$(CC) $^ $(CPPFLAGS) -L$(TOPDIR)/lib $(CFLAGS) \
$(PROG_CFLAGS) $(LDFLAGS) -lxbps -o $@
${SILENT}$(CC) $^ $(CPPFLAGS) -L$(TOPDIR)/lib \
$(CFLAGS) $(PROG_CFLAGS) $(LDFLAGS) $(PROG_LDFLAGS) \
-lxbps -o $@