[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug-readline] rlfe issues
From: |
Mike Frysinger |
Subject: |
[Bug-readline] rlfe issues |
Date: |
Sat, 21 Feb 2009 16:31:04 -0500 |
User-agent: |
KMail/1.11.0 (Linux/2.6.28; KDE/4.2.0; x86_64; ; ) |
looks like someone forgot to actually run `autoconf` in the rlfe subdir to
regenerate the configure script
i'm also attaching a small fixup to the rlfe Makefile: add a depend line on
Makefile.in for Makefile and have the .c compile steps properly utilize
CPPFLAGS
-mike
--- a/examples/rlfe/Makefile.in
+++ b/examples/rlfe/Makefile.in
@@ -55,7 +55,7 @@ rlfe-$(VERSION).tar.gz:
tar czf $@ $(CFILES) $(HFILES) $(EXTRA_DIST)
.c.o:
- $(CC) -c -I. -I$(srcdir) $(M_CFLAGS) $(DEFS) $(OPTIONS) $(CFLAGS) $<
+ $(CC) -c -I. -I$(srcdir) $(CPPFLAGS) $(M_CFLAGS) $(DEFS) $(OPTIONS)
$(CFLAGS) $<
install_bin: .version screen
-if [ -f $(DESTDIR)$(bindir)/$(SCREEN) ] && [ ! -f
$(DESTDIR)$(bindir)/$(SCREEN).old ]; \
@@ -170,6 +170,9 @@ depend.in: $(CFILES) term.h
for i in $(CFILES); do echo $$i; $(CPP_DEPEND) $$i >> tmp_make; done
mv tmp_make Makefile.in
+Makefile: $(srcdir)/Makefile.in
+ ./config.status
+
###############################################################################
### Dependencies:
signature.asc
Description: This is a digitally signed message part.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Bug-readline] rlfe issues,
Mike Frysinger <=