aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2010-08-26 08:27:20 -0700
committerWayne Davison <wayned@samba.org>2010-08-26 08:50:34 -0700
commitc9bf436e5b80ad7d001773e3d750149c11f39411 (patch)
tree745418aac14f38e4dd99b8feee23fcfd477cc09f
parent8b48c682855602589519cfc6f6c9598d6e462143 (diff)
downloadandroid_external_rsync-c9bf436e5b80ad7d001773e3d750149c11f39411.tar.gz
android_external_rsync-c9bf436e5b80ad7d001773e3d750149c11f39411.tar.bz2
android_external_rsync-c9bf436e5b80ad7d001773e3d750149c11f39411.zip
Mention need of wildcard support in make.
See bug 7625.
-rw-r--r--INSTALL14
1 files changed, 13 insertions, 1 deletions
diff --git a/INSTALL b/INSTALL
index 6b10daeb..22c9ebac 100644
--- a/INSTALL
+++ b/INSTALL
@@ -17,7 +17,7 @@ for the daemon by editing the NOBODY_USER and NOBODY_GROUP defines in
config.h, or just override them in your /etc/rsyncd.conf file.
As of 2.4.7, rsync uses Eric Troan's popt option-parsing library. A
-cut-down copy of release 1.6.4 is included in the rsync distribution,
+cut-down copy of a recent release is included in the rsync distribution,
and will be used if there is no popt library on your build host, or if
the --with-included-popt option is passed to ./configure.
@@ -25,6 +25,18 @@ If you configure using --enable-maintainer-mode, then rsync will try
to pop up an xterm on DISPLAY=:0 if it crashes. You might find this
useful, but it should be turned off for production builds.
+MAKE COMPATIBILITY
+------------------
+
+Note that Makefile.in has a rule that uses a wildcard in a prerequisite. If
+your make has a problem with this rule, you will see an error like this:
+
+ Don't know how to make ./*.c
+
+You can change the "proto.h-tstamp" target to omit the "$(srcdir)/*.c"
+source, but keep in mind that this will make a manual run of "make proto"
+necessary (prior to a "make") anytime the function prototypes change.
+
RPM NOTES
---------