diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-10-22 03:15:57 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-10-22 03:15:57 +0000 |
commit | 3f25c1a8a3f0c2773769bee165c55b47c7daed53 (patch) | |
tree | 1006358ae7433b368cf1dc18cee02a3f45ee3632 | |
parent | 0b947cada7350dc601e897939f6fa9e2675fb0fa (diff) |
replace cp with rsync in order to prevent .svn and other SCM files from being included in the final distro package
svn path=/trunk/; revision=16461
-rwxr-xr-x | packages/win32_inno/Makefile | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile index 51435a70..94a40d4b 100755 --- a/packages/win32_inno/Makefile +++ b/packages/win32_inno/Makefile @@ -135,19 +135,26 @@ lib_install: -install -p $(system32)/msvcr71.dll $(DESTDIR)$(bindir) # these go into the Pd package's lib dir install -d $(DESTDIR)$(libdir)/tcl8 - cp -rp /usr/local/lib/tcl8/* $(DESTDIR)$(libdir)/tcl8 + rsync -axv --cvs-exclude /usr/local/lib/tcl8/* \ + $(DESTDIR)$(libdir)/tcl8 install -d $(DESTDIR)$(libdir)/tcl8.5 - cp -rp /usr/local/lib/tcl8.5/* $(DESTDIR)$(libdir)/tcl8.5 + rsync -axv --cvs-exclude /usr/local/lib/tcl8.5/* \ + $(DESTDIR)$(libdir)/tcl8.5 install -d $(DESTDIR)$(libdir)/tk8.5 - cp -rp /usr/local/lib/tk8.5/* $(DESTDIR)$(libdir)/tk8.5 + rsync -axv --cvs-exclude /usr/local/lib/tk8.5/* \ + $(DESTDIR)$(libdir)/tk8.5 install -d $(DESTDIR)$(libdir)/dde1.3 - cp -rp /usr/local/lib/dde1.3/* $(DESTDIR)$(libdir)/dde1.3 + rsync -axv --cvs-exclude /usr/local/lib/dde1.3/* \ + $(DESTDIR)$(libdir)/dde1.3 install -d $(DESTDIR)$(libdir)/reg1.2 - cp -rp /usr/local/lib/reg1.2/* $(DESTDIR)$(libdir)/reg1.2 + rsync -axv --cvs-exclude /usr/local/lib/reg1.2/* \ + $(DESTDIR)$(libdir)/reg1.2 install -d $(DESTDIR)$(libdir)/tkdnd2.2 - cp -rp /usr/local/lib/tkdnd2.2/* $(DESTDIR)$(libdir)/tkdnd2.2 + rsync -axv --cvs-exclude /usr/local/lib/tkdnd2.2/* \ + $(DESTDIR)$(libdir)/tkdnd2.2 install -d $(DESTDIR)$(libdir)/tcllib1.13 - cp -rp /usr/local/lib/tcllib1.13/* $(DESTDIR)$(libdir)/tcllib1.13 + rsync -axv --cvs-exclude /usr/local/lib/tcllib1.13/* \ + $(DESTDIR)$(libdir)/tcllib1.13 # tcllib install |