Remove obsolete check for src/srvx directory
authorMichael Poole <mdpoole@troilus.org>
Sat, 22 May 2004 03:00:05 +0000 (03:00 +0000)
committerMichael Poole <mdpoole@troilus.org>
Sat, 22 May 2004 03:00:05 +0000 (03:00 +0000)
Since srvx is in arch, and arch doesn't have CVS's eccentricities
about old directories, remove the test for src/srvx being a directory.
git-archimport-id: srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-66

ChangeLog
autogen.sh

index 7426d5f26e5b9c6e99aae594d0d29ef9312f0e0f..e1d040be11cd34c6699f13124d095648b16c4c5b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,20 @@
 # arch-tag: automatic-ChangeLog--srvx@srvx.net--2004-srvx/srvx--devo--1.3
 #
 
+2004-05-22 03:00:05 GMT        Michael Poole <mdpoole@troilus.org>     patch-66
+
+    Summary:
+      Remove obsolete check for src/srvx directory
+    Revision:
+      srvx--devo--1.3--patch-66
+
+    Since srvx is in arch, and arch doesn't have CVS's eccentricities
+    about old directories, remove the test for src/srvx being a directory.
+
+    modified files:
+     ChangeLog autogen.sh
+
+
 2004-05-21 12:58:18 GMT        Michael Poole <mdpoole@troilus.org>     patch-65
 
     Summary:
index f5a8d7671cda267642eda9cf3980e1576115f3e2..60cf38cdb43f66007fc2dce03a7a2e3c1fd06262 100755 (executable)
@@ -4,13 +4,3 @@ aclocal
 autoheader -Wall
 automake -a --gnu Makefile rx/Makefile src/Makefile
 autoconf -Wall
-if [ -d ./src/srvx ] ; then
-  echo "WARNING: It looks like you still have the obsolete src/srvx directory."
-  echo "Since we try to compile the binary into that place, this will break the"
-  echo "compile.  This is probably because you did not \"cvs update\" properly"
-  echo "(i.e. with the -P flag).  Since you almost always want to do \"cvs update -P\","
-  echo "we suggest you add a line similar to \"update -P\" to your ~/.cvsrc file."
-  echo "For example:"
-  echo "  echo update -P >> ~/.cvsrc"
-  echo "At the very least, \"rm -r src/srvx\" before you try to compile."
-fi