summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorBryan Ischo <bryan@ischo.com>2008-09-17 10:13:38 +0000
committerBryan Ischo <bryan@ischo.com>2008-09-17 10:13:38 +0000
commit7b43fe0d3d2890d37b393148085e94c3fe6e8291 (patch)
tree67e9e9505387384982eef8d1fe2e143fb13ef6bc /GNUmakefile
parenteddd387eec79e6fb3316f97f41ea7dd58898f588 (diff)
downloadceph-libs3-7b43fe0d3d2890d37b393148085e94c3fe6e8291.tar.gz
* Fixed crypto and base64 to work properly on 64 bit systems
* Fixed a bug where Content-Type header was not being printed by S3 on get/head * Fixed ranged get requests, which weren't working at all before due to some cruft left over from a previous change * Incorporated a better debian shared libs step into the debian package build logic of the GNUmakefile, as supplied by Paul J Stevens
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index e74049e..12c9a7e 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -174,7 +174,8 @@ $(DEBDEVPKG): exported $(BUILD)/deb-dev/DEBIAN/control \
$(BUILD)/deb/DEBIAN/control: debian/control
@mkdir -p $(dir $@)
echo -n "Depends: " > $@
- dpkg-shlibdeps -O $(BUILD)/bin/s3 | cut -d '=' -f 2- >> $@
+ dpkg-shlibdeps -Sbuild -O $(BUILD)/lib/libs3.so.0 | \
+ cut -d '=' -f 2- >> $@
sed -e 's/LIBS3_VERSION/$(LIBS3_VER)/' \
< $< | sed -e 's/DEBIAN_ARCHITECTURE/$(DEBARCH)/' | \
grep -v ^Source: >> $@