f263f2ddb4
- Remove outdated CONFLICTS_INSTALL Changes: https://github.com/ipython/ipython/blob/main/docs/source/whatsnew/version8.rst https://ipython.readthedocs.io/en/stable/whatsnew/version8.html
15 lines
468 B
Python
15 lines
468 B
Python
--- setupbase.py.orig 2025-01-29 09:57:23 UTC
|
|
+++ setupbase.py
|
|
@@ -93,10 +93,7 @@ def find_data_files():
|
|
Just man pages at this point.
|
|
"""
|
|
|
|
- if "freebsd" in sys.platform:
|
|
- manpagebase = Path("man") / "man1"
|
|
- else:
|
|
- manpagebase = Path("share") / "man" / "man1"
|
|
+ manpagebase = Path("share") / "man" / "man1"
|
|
|
|
# Simple file lists can be made by hand
|
|
manpages = [f for f in Path("docs/man").glob("*.1.gz") if f.is_file()]
|