[Pkg-openssl-changes] r151 - openssl/trunk/debian
Kurt Roeckx
kroeckx at costa.debian.org
Mon May 15 18:24:16 UTC 2006
Author: kroeckx
Date: 2006-05-15 18:24:16 +0000 (Mon, 15 May 2006)
New Revision: 151
Modified:
openssl/trunk/debian/changelog
openssl/trunk/debian/rules
Log:
* Always make all directories when building something:
- The engines directory didn't get build for the static directory, so
where missing in libcrypo.a
- The apps directory didn't always get build, so we didn't have an openssl
and a small part of the regression tests failed.
Modified: openssl/trunk/debian/changelog
===================================================================
--- openssl/trunk/debian/changelog 2006-05-15 16:06:23 UTC (rev 150)
+++ openssl/trunk/debian/changelog 2006-05-15 18:24:16 UTC (rev 151)
@@ -2,6 +2,11 @@
* Don't call gcc with -mcpu on i386, we already use -march, so no need for
-mtune either.
+ * Always make all directories when building something:
+ - The engines directory didn't get build for the static directory, so
+ where missing in libcrypo.a
+ - The apps directory didn't always get build, so we didn't have an openssl
+ and a small part of the regression tests failed.
-- Kurt Roeckx <kurt at roeckx.be> Mon, 15 May 2006 16:00:58 +0000
Modified: openssl/trunk/debian/rules
===================================================================
--- openssl/trunk/debian/rules 2006-05-15 16:06:23 UTC (rev 150)
+++ openssl/trunk/debian/rules 2006-05-15 18:24:16 UTC (rev 151)
@@ -33,20 +33,20 @@
# perl util/ssldir.pl /usr/lib/ssl
# chmod +x debian/libtool
./Configure no-shared $(CONFARGS) debian-$(DEB_HOST_ARCH)
- make -f Makefile DIRS="crypto ssl" all
+ make -f Makefile all
-make test
mv libcrypto.a libcrypto.static
mv libssl.a libssl.static
- make -f Makefile DIRS="crypto ssl" clean
+ make -f Makefile clean
test -z "$(OPTS)" || for opt in $(OPTS); \
do \
set -xe; \
./Configure shared $(CONFARGS) debian-$(DEB_HOST_ARCH)-$$opt; \
- make -f Makefile DIRS="crypto ssl" all; \
+ make -f Makefile all; \
make test || /bin/true; \
mkdir -p $$opt; \
mv libcrypto.so* libssl.so* $$opt/; \
- make -f Makefile DIRS="crypto ssl" clean; \
+ make -f Makefile clean; \
done
./Configure shared $(CONFARGS) debian-$(DEB_HOST_ARCH)
#make -f Makefile depend
@@ -55,9 +55,9 @@
make -f Makefile all
-make test
# strip apps/openssl
-# make -f Makefile clean DIRS="crypto ssl"
+# make -f Makefile clean
# ./Configure --prefix=/usr --openssldir=/usr/lib/ssl no-idea no-mdc2 no-rc5 debian-$(DEB_HOST_ARCH)
-# make -f Makefile all DIRS="crypto ssl"
+# make -f Makefile all
touch build
clean:
More information about the Pkg-openssl-changes
mailing list