[Pkg-octave-commit] [SCM] octave-symbolic branch, master, updated. a718b53403d9f164f8c2a3df521385a01d28a11b

pkienzle pkienzle at 416fae20-06d0-4450-9b69-c6c34d4b5f03
Mon Jan 3 03:40:41 UTC 2011


The following commit has been merged in the master branch:
commit d97d01548148b736b9c3c2164d65c13bccfbf937
Author: pkienzle <pkienzle at 416fae20-06d0-4450-9b69-c6c34d4b5f03>
Date:   Sat Feb 4 15:16:51 2006 +0000

    Fix multiple function per file linkage problems.
    
    
    git-svn-id: https://octave.svn.sourceforge.net/svnroot/octave/trunk/octave-forge/main/symbolic@2318 416fae20-06d0-4450-9b69-c6c34d4b5f03

diff --git a/Makefile b/Makefile
index b95d05d..774fcdd 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,7 @@ FUNCTIONS=vpa sym is_vpa is_sym is_ex to_double digits\
           remainder premainder Pi ex_matrix probably_prime\
 	  findsymbols numden syminfo symlsolve sumterms
 	  
-SYMBOLS_LINKS=$(addsuffix .oct,$(FUNCTIONS))
+SYMBOLS_LINKS=$(addsuffix $(OCTLINK),$(FUNCTIONS))
 
 ifdef HAVE_GINAC
 	PROGS=symbols.oct $(SYMBOLS_LINKS)
@@ -47,6 +47,6 @@ symbols.oct: $(OBJ)
 
 $(SYMBOLS_LINKS):
 	-$(RM) $@
-	$(LN_S) symbols.oct $@
+	$(MKOCTLINK) symbols.oct $@
 
 clean: ; $(RM) *.o core octave-core *.oct *~

-- 
octave-symbolic



More information about the Pkg-octave-commit mailing list