summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSpacingBat32024-01-19 19:21:07 +0100
committerSpacingBat32024-01-19 19:21:07 +0100
commit2ad8c1e79f8ce8a8fd8b1f0781884aff76413bb9 (patch)
treeaa1fef7bf3edcabd710516abe9de53b4a139b39f
parentb43e16b340a96a41accf6f8f6726a1e1961ca309 (diff)
downloadaur-2ad8c1e79f8ce8a8fd8b1f0781884aff76413bb9.tar.gz
Properly launch `./configure`.
Just by looking at the docs, I've just found the right CLI flag that works and can be used instead of the described workaround in the issue ticket. This itself might improve the packaging time.
-rw-r--r--PKGBUILD11
1 files changed, 1 insertions, 10 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 9f57b0d83c56..a288ad3f77df 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -22,13 +22,6 @@ source=(
)
sha256sums=(SKIP{,,})
-# Workaround #661: "Build with `--enable-compositor` fails due to missing headers"
-# <https://gitlab.xfce.org/xfce/xfwm4/-/issues/661>
-_workaround_661() {
- make
- make clean
-}
-
prepare(){
cd $pkgname
# Original patch by Ryan Bester (see $url for the reference)
@@ -39,9 +32,6 @@ prepare(){
build() {
cd $pkgname
-
- _workaround_661
-
./configure \
--prefix=/usr \
--sysconfdir=/etc \
@@ -49,6 +39,7 @@ build() {
--enable-startup-notification \
--enable-randr \
--enable-compositor \
+ --enable-maintainer-mode \
--enable-xsync \
--disable-debug
make