Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Commit

Permalink
v0.1.4.2: Hardening and quirks.
Browse files Browse the repository at this point in the history
More control for hardening flags in `AB_FLAGS_*`:

* PIC: Position-independent code. Makes ASLR work.
* PIE: Position-independent executables.
* SSP: Strong Stack Protector.
* RRO: LD RELRO.
* NOW: LD NOW.
* FTF: Cpp FORTIFY_SOURCE.

Quirks System:

See previous commit.
  • Loading branch information
Artoria2e5 committed Aug 25, 2015
1 parent acbbc79 commit 2e64d80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autobuild/defines
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ timestamp_convert(){

PKGNAME=autobuild3$( ((_GIT)) && echo "-git-$(git branch 2>/dev/null | grep '*' | sed 's/*\ //g')")
PKGEPOCH=1
PKGVER=0.1.4$( ((_GIT)) && echo "+$(timestamp_convert $(git log -1 --date=raw --pretty=format:%cd))")
PKGVER=0.1.4.2$( ((_GIT)) && echo "+$(timestamp_convert $(git log -1 --date=raw --pretty=format:%cd))")
PKGDES="Automatic package building tool."
PKGRECOM="distcc ccache"
PKGDEP="dpkg bash rpm apt coreutils autoconf automake autogen spdx-licenses"
Expand Down
2 changes: 1 addition & 1 deletion proc/40-patch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ then
touch .patch
elif [ -f autobuild/patches/series ]
then
for i in $(grep -v '#' autobuild/patches/series); do
for i in $(grep -v '^#' autobuild/patches/series); do
patch -Np1 -i autobuild/patches/$i
done
touch .patch
Expand Down

0 comments on commit 2e64d80

Please sign in to comment.