changeset 20367:a6080f6152b7

Fix rule to create liboctave/cruft/ranlib/ranlib.def for non-recursive build * liboctave/cruft/ranlib/module.mk (gen-ranlib-def): Pass $(top_srcdir) to mkf77defs.
author Mike Miller <mtmiller@octave.org>
date Sat, 11 Jul 2015 23:33:51 -0400
parents a1c2d0cd5b14
children 23172e987766
files liboctave/cruft/ranlib/module.mk
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/cruft/ranlib/module.mk	Sat Jul 11 23:25:37 2015 -0400
+++ b/liboctave/cruft/ranlib/module.mk	Sat Jul 11 23:33:51 2015 -0400
@@ -55,7 +55,7 @@
 define gen-ranlib-def
   rm -f $@-t $@ && \
   $(MKDIR_P) liboctave/cruft/ranlib && \
-  $(SHELL) liboctave/cruft/mkf77def $(srcdir)/liboctave $(RANLIB_SRC) > $@-t && \
+  $(SHELL) liboctave/cruft/mkf77def $(top_srcdir) $(RANLIB_SRC) > $@-t && \
   mv $@-t $@
 endef