| Anonymous | Login | Signup for a new account | 11-10-2008 11:01 PST |
| Main | My View | View Issues | Change Log | Docs |
| Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | ||||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||||
| 0000841 | [buildroot] Other | minor | always | 04-18-06 10:23 | 02-12-07 05:42 | ||||
| Reporter | nemo | View Status | public | ||||||
| Assigned To | buildroot | ||||||||
| Priority | normal | Resolution | fixed | ||||||
| Status | closed | Product Version | |||||||
| Summary | 0000841: Python package - wrong include and library path | ||||||||
| Description |
setup.py uses standard host's include and library path for modules building. This patch forces usage of staging_dir. This second patch removes *.pyc installed in target_dir: --- package/python/python.mk (revisione 118) +++ package/python/python.mk (revisione 119) @@ -70,7 +70,7 @@ rm $(TARGET_DIR)/usr/bin/python?.? rm $(TARGET_DIR)/usr/bin/idle rm $(TARGET_DIR)/usr/bin/pydoc - find $(TARGET_DIR)/usr/lib/ -name '*.pyc' -o -name '*.pyo' -exec rm {} \; + find $(TARGET_DIR)/usr/lib/ \( -name '*.pyc' -o -name '*.pyo' \) -exec rm {} \; rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \ $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc \ $(TARGET_DIR)/usr/lib/python*/test |
||||||||
| Additional Information | |||||||||
| Attached Files |
|
||||||||
|
|
|||||||||
| Copyright © 2000 - 2006 Mantis Group |