Browse Source

*** empty log message ***

pre-master-46
saintel 18 years ago
parent
commit
00cbe5790f
  1. 4
      ChangeLog
  2. 6
      src/Makefile.am

4
ChangeLog

@ -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

6
src/Makefile.am

@ -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 $<

Loading…
Cancel
Save