Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Tools
development-tools
manjaro-tools
Commits
99599eac
Commit
99599eac
authored
Oct 04, 2015
by
Philip Müller
Browse files
Merge branch 'devel'
parents
ba461e25
90442cd2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
99599eac
Version
=
0.9.13
Version
=
0.9.13
.1
PREFIX
=
/usr/local
SYSCONFDIR
=
/etc
...
...
conf/makepkg-i686.conf
View file @
99599eac
...
...
@@ -38,8 +38,8 @@ CHOST="i686-pc-linux-gnu"
# -march (or -mcpu) builds exclusively for an architecture
# -mtune optimizes for an architecture, but builds for whole processor family
CPPFLAGS
=
"-D_FORTIFY_SOURCE=2"
CFLAGS
=
"-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong
-fstack-check
"
CXXFLAGS
=
"-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong
-fstack-check
"
CFLAGS
=
"-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong"
CXXFLAGS
=
"-march=i686 -mtune=generic -O2 -pipe -fstack-protector-strong"
LDFLAGS
=
"-Wl,-O1,--sort-common,--as-needed,-z,relro"
#-- Make Flags: change this for DistCC/SMP systems
#MAKEFLAGS="-j2"
...
...
@@ -61,7 +61,7 @@ DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
#-- check: Run the check() function if present in the PKGBUILD
#-- sign: Generate PGP signature file
#
BUILDENV
=(
fakeroot
!
distcc
color
!
ccache
check
!
sign
)
BUILDENV
=(!
distcc
color
!
ccache
check
!
sign
)
#
#-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
#-- specify a space-delimited list of hosts running in the DistCC cluster.
...
...
conf/makepkg-x86_64.conf
View file @
99599eac
...
...
@@ -19,7 +19,7 @@ DLAGENTS=('ftp::/usr/bin/curl -fC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %
# /usr/bin/lftpget -c
# /usr/bin/wget
#-- The
the
package required by makepkg to download VCS sources
#-- The package required by makepkg to download VCS sources
# Format: 'protocol::package'
VCSCLIENTS
=(
'bzr::bzr'
'git::git'
...
...
@@ -37,8 +37,8 @@ CHOST="x86_64-unknown-linux-gnu"
# -march (or -mcpu) builds exclusively for an architecture
# -mtune optimizes for an architecture, but builds for whole processor family
CPPFLAGS
=
"-D_FORTIFY_SOURCE=2"
CFLAGS
=
"-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong
-fstack-check
"
CXXFLAGS
=
"-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong
-fstack-check
"
CFLAGS
=
"-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong"
CXXFLAGS
=
"-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong"
LDFLAGS
=
"-Wl,-O1,--sort-common,--as-needed,-z,relro"
#-- Make Flags: change this for DistCC/SMP systems
#MAKEFLAGS="-j2"
...
...
@@ -60,7 +60,7 @@ DEBUG_CXXFLAGS="-g -fvar-tracking-assignments"
#-- check: Run the check() function if present in the PKGBUILD
#-- sign: Generate PGP signature file
#
BUILDENV
=(
fakeroot
!
distcc
color
!
ccache
check
!
sign
)
BUILDENV
=(!
distcc
color
!
ccache
check
!
sign
)
#
#-- If using DistCC, your MAKEFLAGS will also need modification. In addition,
#-- specify a space-delimited list of hosts running in the DistCC cluster.
...
...
lib/util-iso.sh
View file @
99599eac
...
...
@@ -139,7 +139,8 @@ squash_image_dir() {
local
highcomp
=
"-b 256K -Xbcj x86"
[[
"
${
iso_compression
}
"
!=
"xz"
]]
&&
highcomp
=
""
msg2
"Creating SquashFS image. This may take some time..."
if
[[
"
$(
basename
"
$1
"
)
"
==
"mhwd-image"
]]
;
then
local
used_kernel
=
$(
echo
${
kernel
}
|
cut
-c
6
)
if
[[
"
$(
basename
"
$1
"
)
"
==
"mhwd-image"
&&
${
used_kernel
}
-ge
"4"
]]
;
then
mksquashfs
"
${
1
}
"
"
${
sq_img
}
"
-noappend
-comp
lz4
||
die
"Exit ..."
else
mksquashfs
"
${
1
}
"
"
${
sq_img
}
"
-noappend
-comp
${
iso_compression
}
${
highcomp
}
||
die
"Exit ..."
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment