[vhffs-dev] [1130] Better if we update substitution stuff too. |
[ Thread Index |
Date Index
| More vhffs.org/vhffs-dev Archives
]
Revision: 1130
Author: beuss
Date: 2008-01-13 13:58:24 +0000 (Sun, 13 Jan 2008)
Log Message:
-----------
Better if we update substitution stuff too.
Modified Paths:
--------------
trunk/vhffs-api/src/Vhffs/Makefile.am
trunk/vhffs-api/src/examples/Makefile.am
trunk/vhffs-backend/src/Makefile.am
trunk/vhffs-compat/Makefile.am
trunk/vhffs-doc/Makefile.am
trunk/vhffs-jabber/Makefile.am
trunk/vhffs-listengine/src/Makefile.am
trunk/vhffs-panel/Makefile.am
trunk/vhffs-public/Makefile.am
trunk/vhffs-robots/Makefile.am
trunk/vhffs-tools/src/Makefile.am
Modified: trunk/vhffs-api/src/Vhffs/Makefile.am
===================================================================
--- trunk/vhffs-api/src/Vhffs/Makefile.am 2008-01-12 14:23:49 UTC (rev 1129)
+++ trunk/vhffs-api/src/Vhffs/Makefile.am 2008-01-13 13:58:24 UTC (rev 1130)
@@ -72,7 +72,7 @@
install-data-hook:
- for f in $(nobase_api_DATA) ; do \
+ for f in $(nobase_dist_api_DATA) ; do \
$(do_sed) $(DESTDIR)$(apidir)/$$f; \
done
Modified: trunk/vhffs-api/src/examples/Makefile.am
===================================================================
--- trunk/vhffs-api/src/examples/Makefile.am 2008-01-12 14:23:49 UTC (rev 1129)
+++ trunk/vhffs-api/src/examples/Makefile.am 2008-01-13 13:58:24 UTC (rev 1130)
@@ -55,6 +55,6 @@
-e 's,'%VHFFS_LIB_DIR%',$(APIDIR),g'
install-data-hook:
- for f in $(examples_DATA) ; do \
+ for f in $(dist_examples_DATA) ; do \
$(do_sed) $$f; \
done
Modified: trunk/vhffs-backend/src/Makefile.am
===================================================================
--- trunk/vhffs-backend/src/Makefile.am 2008-01-12 14:23:49 UTC (rev 1129)
+++ trunk/vhffs-backend/src/Makefile.am 2008-01-13 13:58:24 UTC (rev 1130)
@@ -13,7 +13,7 @@
-e 's,%PERL%,$(PERL),g'
install-data-hook:
- @for f in $(nobase_mirror_SCRIPTS) ; do \
+ @for f in $(nobase_dist_mirror_SCRIPTS) ; do \
$(do_sed) $(DESTDIR)$(mirrordir)/$$f; \
done
Modified: trunk/vhffs-compat/Makefile.am
===================================================================
--- trunk/vhffs-compat/Makefile.am 2008-01-12 14:23:49 UTC (rev 1129)
+++ trunk/vhffs-compat/Makefile.am 2008-01-13 13:58:24 UTC (rev 1130)
@@ -21,10 +21,10 @@
# Because automake, exec-hook is executed before install-scripts
# so install-data is after. Here we use a data-hook
install-data-hook :
- for f in $(compat_DATA) ; do \
+ for f in $(dist_compat_DATA) ; do \
$(do_sed) $(DESTDIR)$(compatdir)/$$f; \
done
- for f in $(compat_SCRIPTS) ; do \
+ for f in $(dist_compat_SCRIPTS) ; do \
$(do_sed) $(DESTDIR)$(compatdir)/$$f; \
done
Modified: trunk/vhffs-doc/Makefile.am
===================================================================
--- trunk/vhffs-doc/Makefile.am 2008-01-12 14:23:49 UTC (rev 1129)
+++ trunk/vhffs-doc/Makefile.am 2008-01-13 13:58:24 UTC (rev 1130)
@@ -3,7 +3,6 @@
docdir = @DOCDIR@
if BUILD_DOC
-# Not ver
VHFFS_DOC_EXTRADATA = html/fr/vhffs-doc.html
VHFFS_DOC_SRC = src/%/vhffs-doc.xml \
src/%/part1/mydns.xml \
Modified: trunk/vhffs-jabber/Makefile.am
===================================================================
--- trunk/vhffs-jabber/Makefile.am 2008-01-12 14:23:49 UTC (rev 1129)
+++ trunk/vhffs-jabber/Makefile.am 2008-01-13 13:58:24 UTC (rev 1130)
@@ -11,7 +11,7 @@
# Because automake, exec-hook is executed before install-scripts
# so install-data is after. Here we use a data-hook
install-data-hook :
- for f in $(jabber_SCRIPTS) ; do \
+ for f in $(dist_jabber_SCRIPTS) ; do \
$(do_sed) $(DESTDIR)$(jabberdir)/$$f; \
done
Modified: trunk/vhffs-listengine/src/Makefile.am
===================================================================
--- trunk/vhffs-listengine/src/Makefile.am 2008-01-12 14:23:49 UTC (rev 1129)
+++ trunk/vhffs-listengine/src/Makefile.am 2008-01-13 13:58:24 UTC (rev 1130)
@@ -10,6 +10,6 @@
# Because automake, exec-hook is executed before install-scripts
# so install-data is after. Here we use a data-hook
install-data-hook :
- for f in $(le_SCRIPTS) ; do \
+ for f in $(dist_le_SCRIPTS) ; do \
$(do_sed) $(DESTDIR)$(ledir)/$$f; \
done
Modified: trunk/vhffs-panel/Makefile.am
===================================================================
--- trunk/vhffs-panel/Makefile.am 2008-01-12 14:23:49 UTC (rev 1129)
+++ trunk/vhffs-panel/Makefile.am 2008-01-13 13:58:24 UTC (rev 1130)
@@ -136,7 +136,7 @@
# Because automake, exec-hook is executed before install-scripts
# so install-data is after. Here we use a data-hook
install-data-hook :
- for f in $(nobase_panel_SCRIPTS) ; do \
+ for f in $(nobase_dist_panel_SCRIPTS) ; do \
$(do_sed) $(DESTDIR)$(paneldir)/$$f; \
done
Modified: trunk/vhffs-public/Makefile.am
===================================================================
--- trunk/vhffs-public/Makefile.am 2008-01-12 14:23:49 UTC (rev 1129)
+++ trunk/vhffs-public/Makefile.am 2008-01-13 13:58:24 UTC (rev 1130)
@@ -25,7 +25,7 @@
# Because automake, exec-hook is executed before install-scripts
# so install-data is after. Here we use a data-hook
install-data-hook :
- for f in $(nobase_public_SCRIPTS) ; do \
+ for f in $(nobase_dist_public_SCRIPTS) ; do \
$(do_sed) $(DESTDIR)$(publicdir)/$$f; \
done
Modified: trunk/vhffs-robots/Makefile.am
===================================================================
--- trunk/vhffs-robots/Makefile.am 2008-01-12 14:23:49 UTC (rev 1129)
+++ trunk/vhffs-robots/Makefile.am 2008-01-13 13:58:24 UTC (rev 1130)
@@ -80,14 +80,14 @@
# Because automake, exec-hook is executed before install-scripts
# so install-data is after. Here we use a data-hook
install-data-hook :
- for f in $(nobase_bots_DATA) ; do \
+ for f in $(nobase_dist_bots_DATA) ; do \
$(do_sed) $(DESTDIR)$(botsdir)/$$f; \
done
- for f in $(bots_SCRIPTS) ; do \
+ for f in $(dist_bots_SCRIPTS) ; do \
nf=`echo $$f | sed 's,^.*/,,'`; \
$(do_sed) $(DESTDIR)$(botsdir)/$$nf; \
done
- for f in $(nobase_bots_SCRIPTS) ; do \
+ for f in $(nobase_dist_bots_SCRIPTS) ; do \
$(do_sed) $(DESTDIR)$(botsdir)/$$f; \
done
Modified: trunk/vhffs-tools/src/Makefile.am
===================================================================
--- trunk/vhffs-tools/src/Makefile.am 2008-01-12 14:23:49 UTC (rev 1129)
+++ trunk/vhffs-tools/src/Makefile.am 2008-01-13 13:58:24 UTC (rev 1130)
@@ -20,6 +20,6 @@
# Because automake, exec-hook is executed before install-scripts
# so install-data is after. Here we use a data-hook
install-data-hook :
- for f in $(tools_SCRIPTS) ; do \
+ for f in $(dist_tools_SCRIPTS) ; do \
$(do_sed) $(DESTDIR)$(toolsdir)/$$f; \
done