Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 79de3bd

Browse files
committed
BSD find puts in extra slashes if you leave a trailing slash in the argument
this breaks just below when we use cut on /
1 parent 3bedcd6 commit 79de3bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ CONFVERSION=`cat $PKG/package-version.txt`
3131
bootstrap () {
3232
rm -f m4/sage_spkg_configures.m4
3333
spkg_configures=""
34-
for filename in $(find build/pkgs/ -type f -name spkg-configure.m4); do
34+
for filename in $(find build/pkgs -type f -name spkg-configure.m4); do
3535
pkgname="$(echo $filename | cut -d/ -f3)"
3636
echo "m4_sinclude([$filename])" >> m4/sage_spkg_configures.m4
3737
spkg_configures="$spkg_configures

0 commit comments

Comments
 (0)