classification
Title: Can't add files with spaces
Type: behavior Stage:
Components: Distutils Versions: Python 3.1, Python 3.0, Python 2.7, Python 2.6
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: antonio (1)
Priority: normal Keywords

Created on 2003-09-19 09:10 by antonio, last changed 2009-02-04 16:45 by akitada.

Messages (1)
msg60388 - (view) Author: Antonio Beamud Montero (antonio) Date: 2003-09-19 09:10
If i try to add data files with blank spaces in its
names using a wildcard in the MANIFEST.in file, it
doesn't do the work well and add only the fisrt part of
the name file. For example:
----- MANIFEST.in ----
images/*
-----------------------
The MANIFEST file generated is ok, but when rpm util
try to process it fail... The solution is to scape the
names or quote the names that are generated inside
INSTALLED_FILES

INSTALLED_FILES
running install
running build
running install_data
writing list of installed files to 'INSTALLED_FILES'
+ /usr/lib/rpm/brp-compress
+ /usr/lib/rpm/brp-strip
+ /usr/lib/rpm/brp-strip-comment-note
Processing files: garra-configurator-0.9.12-1
error: Two files on one line:
/usr/local/apache/htdocs/images/default
error: File must begin with "/": logo-tv-1.png

History
Date User Action Args
2009-02-04 16:45:40akitadasettype: behavior
versions: + Python 2.6, Python 3.0, Python 3.1, Python 2.7, - Python 2.3
2003-09-19 09:10:19antoniocreate