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

Commit

Permalink
defcfg: properly check for mips*
Browse files Browse the repository at this point in the history
  • Loading branch information
MingcongBai committed Oct 6, 2016
1 parent 1392495 commit 4d6f6f1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion etc/autobuild/ab3_defcfg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ AB_FLAGS_PIC=1
AB_FLAGS_PIE=1

# Hardening specs?
if [[ "${CROSS:-$ARCH}" != "mipsel" ]]; then
if [[ $(uname -m) != mips* ]]; then
AB_FLAGS_SPECS=1
else
AB_FLAGS_SPECS=0
Expand Down
6 changes: 4 additions & 2 deletions etc/autobuild/ab3cfg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
##Autobuild user config override
# See a list of options in ab3_defcfg.sh.
ABMPM=dpkg # Your main PM
ABAPMS= # Other PMs
: ${MTER='AOSC Buildbot <[email protected]>'} # And your name and email
ABAPMS= # Other PMs
MTER="Jeff Bai <[email protected]>"
ARCH=mipsel
ABINSTALL=dpkg

0 comments on commit 4d6f6f1

Please sign in to comment.