diff options
| author | Mario Izquierdo (mariodebian) <mariodebian@gmail.com> | 2008-08-06 17:56:09 (CEST) |
|---|---|---|
| committer | Mario Izquierdo (mariodebian) <mariodebian@gmail.com> | 2008-08-06 17:56:09 (CEST) |
| commit | 6d85c8df58a3d0589be452e0d611b66a492e8a2a (patch) | |
| tree | 4ae776f023b86cd829b47711ab5aa70c830e6ff2 | |
| parent | 4b1ad99c24dc2eb7a0900094bff7123712cc66d7 (diff) | |
| download | unionfs-tcos-master.tar.gz | |
* Fix debian/rules to compile whiteout.o
git-svn-id: http://tcosproject.org/svn/tcos/trunk/unionfs-tcos@938 97557d6f-af72-4ac7-98cc-18709f36555f
| -rw-r--r-- | debian/changelog | 6 | ||||
| -rwxr-xr-x | debian/rules | 12 |
2 files changed, 16 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index f613efc..e45b582 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +unionfs-tcos (1.0.2.6.26.tcos3) unstable; urgency=low + + * Fix debian/rules to compile whiteout.o + + -- Mario Izquierdo (mariodebian) <mariodebian@gmail.com> Sun, 03 Aug 2008 23:36:24 +0200 + unionfs-tcos (1.0.2.6.26.tcos2) unstable; urgency=low * Fix vfs_splice_from, vfs_splice_to and rw_verify_area (file.c) diff --git a/debian/rules b/debian/rules index e8b08c7..1a0be2a 100755 --- a/debian/rules +++ b/debian/rules @@ -12,10 +12,18 @@ install/unionfs-tcos-source:: # Create the directories to install the source into dh_installdirs -p$(psource) usr/src/modules/$(sname)/debian usr/src/modules/$(sname)/build dh_installdirs -p$(psource) usr/src/modules/$(sname)/debian usr/src/modules/$(sname)/build/linux + dh_installdirs -p$(psource) usr/src/modules/$(sname)/debian usr/src/modules/$(sname)/2.6.26 + dh_installdirs -p$(psource) usr/src/modules/$(sname)/debian usr/src/modules/$(sname)/2.6.26/linux - # Copy only the driver source to the proper location + # Copy only the driver source (2.6.25)to the proper location cp -a build/Makefile build/*.c build/*.h debian/$(psource)/usr/src/modules/$(sname)/build - cp -a build/Makefile build/linux/union_fs.h debian/$(psource)/usr/src/modules/$(sname)/build/linux + cp -a build/linux/union_fs.h debian/$(psource)/usr/src/modules/$(sname)/build/linux + + + # Copy only the driver source (2.6.26) to the proper location + cp -a 2.6.26/Makefile 2.6.26/*.c 2.6.26/*.h debian/$(psource)/usr/src/modules/$(sname)/2.6.26 + cp -a 2.6.26/linux/union_fs.h debian/$(psource)/usr/src/modules/$(sname)/2.6.26/linux + cp -a Makefile debian/$(psource)/usr/src/modules/$(sname) # Copy the needed debian/ pieces to the proper location |
