Skip to content

Commit

Permalink
Merge pull request #12631 from alex--m/topic/fix_dist_buildrpm_v4.1.x
Browse files Browse the repository at this point in the history
v4.1.x: dist/buildrpm: fix incorrect test, which passed even with an empty path
  • Loading branch information
jsquyres authored Jun 18, 2024
2 parents cb33ea4 + 9c30da8 commit c89eaac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/dist/linux/buildrpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ echo "--> Found specfile: $specfile"
#
# try to find Libfabric lib subir
#
if test -n $libfabric_path; then
if test -n "$libfabric_path"; then
# does lib64 exist?
if test -d $libfabric_path/lib64; then
# yes, so I will use lib64 as include dir
Expand Down

0 comments on commit c89eaac

Please sign in to comment.