Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ PackageDoc := rec(
),

Dependencies := rec(
GAP := ">= 4.12",
GAP := ">= 4.13",
NeededOtherPackages := [],
SuggestedOtherPackages := [ [ "GAPDoc", ">= 1.6.1" ],
[ "AutoDoc", ">= 2023.06.19" ],
Expand Down
20 changes: 3 additions & 17 deletions etc/BuildPackages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,8 @@ then
fi
if [ -x configure ]
then
# We want to know if this is an autoconf configure script
# or not, without actually executing it!
if grep Autoconf ./configure > /dev/null
then
./configure --with-gaproot="$GAPROOT"
# hack: run `make clean` in case the package was built before with different settings
make clean
else
./configure "$GAPROOT"
# hack: run `make clean` in case the package was built before with different settings
make clean
# hack: in browse and edim, `make clean` removes `Makefile` so run configure
# again to ensure we can actually build them (we could restrict this hack to
# the two offending packages, but since non-autoconf configure is super cheap,
# there seems little reason to bother)
./configure "$GAPROOT"
fi
./configure --with-gaproot="$GAPROOT"
# hack: run `make clean` in case the package was built before with different settings
make clean
make
fi
Loading