Skip to content

Commit

Permalink
enclose directory name in space. (Closes GH-2)
Browse files Browse the repository at this point in the history
  • Loading branch information
zooko authored and astraw committed Jun 18, 2009
1 parent 9d47243 commit 94679e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stdeb/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -946,13 +946,13 @@ def build_dsc(debinfo,
if test "$*" = "2.5" -o "$*" = "2.4"; then \\
%(setup_env_vars)spython$* -c "import setuptools,sys;f='setup.py';sys.argv[0]=f;execfile(f,{'__file__':f,'__name__':'__main__'})" install \\
--no-compile --single-version-externally-managed \\
--root $(CURDIR)/debian/${PACKAGE_NAME}; \\
--root \"$(CURDIR)/debian/${PACKAGE_NAME}\"; \\
mv debian/${PACKAGE_NAME}/usr/lib/python$*/site-packages/*.egg-info \\
debian/${PACKAGE_NAME}/usr/lib/python$*/site-packages/${EGG_MODULE_NAME}.egg-info; \\
else \\
%(setup_env_vars)spython$* -c "import setuptools,sys;f='setup.py';sys.argv[0]=f;execfile(f,{'__file__':f,'__name__':'__main__'})" install \\
--no-compile --single-version-externally-managed --install-layout=deb \\
--root $(CURDIR)/debian/${PACKAGE_NAME}; \\
--root \"$(CURDIR)/debian/${PACKAGE_NAME}\"; \\
mv debian/${PACKAGE_NAME}/usr/lib/python$*/dist-packages/*.egg-info \\
debian/${PACKAGE_NAME}/usr/lib/python$*/dist-packages/${EGG_MODULE_NAME}.egg-info; \\
fi
Expand Down

0 comments on commit 94679e6

Please sign in to comment.