Skip to content

Commit

Permalink
fix: Commit fa2bfe0 kills my build on openSUSE #3154
Browse files Browse the repository at this point in the history
Debian uses dist-packages instead of site-packages.
  • Loading branch information
Carsten/Eckeneckepen committed Oct 17, 2024
1 parent 7adb947 commit 5001ccb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1667,7 +1667,7 @@ else
SITEPY=`$PYTHON -c 'import sysconfig; print(sysconfig.get_path("platlib", "rpm_prefix"))'`
else
AC_MSG_NOTICE([Neither scheme deb_system nor rpm_prefix found, assuming Debian <= 11])
SITEPY=/usr/lib/python3/site-packages
SITEPY=/usr/lib/python3/dist-packages
fi
fi

Expand Down

1 comment on commit 5001ccb

@andypugh
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Getting close to what I was thinking of doing, saying "screw it" and hard-coding the path.

Please sign in to comment.