mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
portable fashion. That took a *lot* longer to debug than I thought it would, so let's try not to break it. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4912 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
abe6c5d6ae
commit
b9d077c10d
4 changed files with 39 additions and 16 deletions
|
@ -1,12 +1,14 @@
|
|||
#! /bin/sh
|
||||
#
|
||||
# this file is *inserted* into the install section of the generated
|
||||
# spec file
|
||||
# This file becomes the install section of the generated spec file.
|
||||
#
|
||||
|
||||
# this is, what dist.py normally does
|
||||
# This is what dist.py normally does.
|
||||
python setup.py install --root=${RPM_BUILD_ROOT} --record="INSTALLED_FILES"
|
||||
|
||||
# Sort the filelist so that directories appear before files. This avoids
|
||||
# duplicate filename problems on some systems.
|
||||
touch DIRS
|
||||
for i in `cat INSTALLED_FILES`; do
|
||||
if [ -f ${RPM_BUILD_ROOT}/$i ]; then
|
||||
echo $i >>FILES
|
||||
|
@ -16,4 +18,6 @@ for i in `cat INSTALLED_FILES`; do
|
|||
fi
|
||||
done
|
||||
|
||||
cat DIRS FILES >INSTALLED_FILES
|
||||
# Make sure we match foo.pyo and foo.pyc along with foo.py (but only once each)
|
||||
sed -e "/\.py[co]$/d" -e "s/\.py$/.py*/" DIRS FILES >INSTALLED_FILES
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue