diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-06-18 14:15:16 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-06-18 14:15:16 +0000 |
commit | da81e2153611b99fe1d02ec14de61ebc5b732831 (patch) | |
tree | d8ff521eb7031a644c20dd2d77013ae2ba6ca7a3 /Makefile.in | |
parent | 46831d6fcf5ace953b1e354a542b9bb45cdf376a (diff) | |
download | rsync-da81e2153611b99fe1d02ec14de61ebc5b732831.tar.gz rsync-da81e2153611b99fe1d02ec14de61ebc5b732831.tar.bz2 rsync-da81e2153611b99fe1d02ec14de61ebc5b732831.zip |
use LDFLAGS in Makefile.in (fix from arndt@schoenewald.de)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index a68797f7..69a69a8d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -46,7 +46,7 @@ install: all ${INSTALLCMD} -m 644 $(srcdir)/rsyncd.conf.5 ${INSTALL_MAN}/man5 rsync: $(OBJS) - $(CC) $(CFLAGS) -o rsync $(OBJS) $(LIBS) + $(CC) $(CFLAGS) $(LDFLAGS) -o rsync $(OBJS) $(LIBS) rsync.1: rsync.yo yodl2man -o rsync.1 rsync.yo |