*** empty log message ***

This commit is contained in:
saintel 2008-09-15 06:39:21 +00:00
parent b70270c972
commit 00cbe5790f
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2008-09-15 Lionel Sainte Cluque
* src/Makefile.am: Add $(DESTDIR) in tclspice installation, required by
debian package.
2008-09-13 Holger Vogt
* configure.in: add AC_LIBTOOL_WIN32_DLL
* src/makefile.am correct typo

View File

@ -281,7 +281,7 @@ TCL_FILES = libspice.la pkgIndex.tcl
pkgIndex.tcl: pkgIndex.tcl.in
rm -f $@
sed -e 's;%LIB_DIR%;$(libdir);g' $< | \
sed -e 's;%LIB_DIR%;$(DESTDIR)$(libdir);g' $< | \
sed -e 's;%VERSION%;$(TCLSPICE_VERSION);g' > $@
all: $(TCL_FILES)
@ -294,8 +294,8 @@ install-tcl-recursive:
done;
install-tclspice:
$(mkinstalldirs) $(libdir)/spice
$(INSTALL_DATA) pkgIndex.tcl $(libdir)/spice
$(mkinstalldirs) $(DESTDIR)$(libdir)/spice
$(INSTALL_DATA) pkgIndex.tcl $(DESTDIR)$(libdir)/spice
tclspice.lo: tclspice.c
$(LTCOMPILE) -DTCLSPICE_version="\"$(TCLSPICE_VERSION)\"" -MT tclspice.lo -MD -MP -MF $(DEPDIR)/tclspice.Tpo -c -o tclspice.o $<