Fix installation step on Windows (regression from e8306f623a)
authorZaheer Chothia <zaheer.chothia@gmail.com>
Mon, 15 Oct 2012 20:13:37 +0000 (22:13 +0200)
committerZaheer Chothia <zaheer.chothia@gmail.com>
Mon, 15 Oct 2012 20:13:37 +0000 (22:13 +0200)
Since the DLL now has a fixed name there is no need to install a versioned alias too.

Makefile.install

index 7f30d6b..87730a1 100644 (file)
@@ -71,11 +71,9 @@ ifeq ($(OSNAME), Darwin)
 endif
 ifeq ($(OSNAME), WINNT)
        -cp $(LIBDLLNAME) $(OPENBLAS_LIBRARY_DIR)
-       -ln -fs $(OPENBLAS_LIBRARY_DIR)/$(LIBDLLNAME) $(OPENBLAS_LIBRARY_DIR)/$(LIBPREFIX).dll
 endif
 ifeq ($(OSNAME), CYGWIN_NT)
        -cp $(LIBDLLNAME) $(OPENBLAS_LIBRARY_DIR)
-       -ln -fs $(OPENBLAS_LIBRARY_DIR)/$(LIBDLLNAME) $(OPENBLAS_LIBRARY_DIR)/$(LIBPREFIX).dll
 endif
 
        @echo Install OK!