[Pkg-openldap-devel] r725 - openldap/trunk-2.3/debian

Torsten Landschoff torsten at costa.debian.org
Fri Sep 15 15:29:57 UTC 2006


Author: torsten
Date: 2006-09-15 15:29:57 +0000 (Fri, 15 Sep 2006)
New Revision: 725

Modified:
   openldap/trunk-2.3/debian/rules
Log:
Fix test for non-existing doc/rfc directory.

Modified: openldap/trunk-2.3/debian/rules
===================================================================
--- openldap/trunk-2.3/debian/rules	2006-09-01 22:36:18 UTC (rev 724)
+++ openldap/trunk-2.3/debian/rules	2006-09-15 15:29:57 UTC (rev 725)
@@ -36,7 +36,7 @@
 	# the unchanged upstream sources but Debian can not ship the 
 	# RFCs in main so this test is here to make sure it does not 
 	# get in by accident again.  -- Torsten
-	[ -e doc/rfc ] && exit 1
+	if [ -e doc/rfc ]; then exit 1; fi
 
 	mkdir -p $(builddir)
 	chmod 755 $(CURDIR)/autogen.sh




More information about the Pkg-openldap-devel mailing list