diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-11-28 03:57:15 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-11-28 03:57:15 +0000 |
commit | a4951ca5708346b2d26ae46db77a12a08791efda (patch) | |
tree | 53b81ea86007903ca0682f3a33fe7a769411376a /math/fxt/files/patch-makefile | |
parent | Update hlserver-snow to 0.0.94.b (diff) |
add fxt
FFT code and related stuff
Notes
Notes:
svn path=/head/; revision=50672
Diffstat (limited to 'math/fxt/files/patch-makefile')
-rw-r--r-- | math/fxt/files/patch-makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/math/fxt/files/patch-makefile b/math/fxt/files/patch-makefile new file mode 100644 index 000000000000..a68304b99e34 --- /dev/null +++ b/math/fxt/files/patch-makefile @@ -0,0 +1,14 @@ +--- makefile.orig Wed Nov 28 11:53:26 2001 ++++ makefile Wed Nov 28 11:54:18 2001 +@@ -441,9 +441,9 @@ + install: lib + @echo 'PREFIX=$(PREFIX) LIBDIR=$(LIBDIR) INCDIR=$(INCDIR)' + @test -d $(LIBDIR) || mkdir $(LIBDIR) +- cp -auv $(FXTLIB) $(LIBDIR)/ ++ ${INSTALL_PROGRAM} $(FXTLIB) $(LIBDIR)/ + @test -d $(INCDIR) || mkdir $(INCDIR) +- @cp -auv $(FXTHDRS) $(INCDIR)/ ++ @${INSTALL_DATA} $(FXTHDRS) $(INCDIR)/ + + .PHONY: uninstall ## opposite of install ;-) + uninstall: |