summaryrefslogtreecommitdiff
path: root/Makefile.shared
diff options
context:
space:
mode:
authorCédric Bosdonnat <cedricbosdo@openoffice.org>2010-01-25 09:35:43 +0100
committerCédric Bosdonnat <cedricbosdo@openoffice.org>2010-01-25 09:36:34 +0100
commit42772928ad94616e4347ed6af2b854eeee442a68 (patch)
treeaef117a7e1df6be3a49010884ac2ab017263035e /Makefile.shared
parent476206278ac3555cab6743a28fcc8013a4acfc7d (diff)
Fixed broken makefiles (autocorrection scripts)
* Makefile.shared:
Diffstat (limited to 'Makefile.shared')
-rw-r--r--Makefile.shared8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.shared b/Makefile.shared
index 6c166c76e..94e4ce31b 100644
--- a/Makefile.shared
+++ b/Makefile.shared
@@ -30,8 +30,11 @@ $(STAMP_DIR)/artwork.install : $(OOBUILDDIR)/unpack \
$(TOOLSDIR)/bin/install-artwork $(top_srcdir)/src $(OOBUILDDIR)
touch $@
-autocorr.apply: $(top_srcdir)/bin/add_acor.py $(top_srcdir)/src/acor.csv $(STAMP_DIR)/autocorr.apply
+autocorr.apply: $(STAMP_DIR)/autocorr.apply
+$(STAMP_DIR)/autocorr.apply: $(OOBUILDDIR)/unpack \
+ $(top_srcdir)/bin/add_acor.py $(top_srcdir)/src/acor.csv
$(top_srcdir)/bin/add_acor.py $(OOBUILDDIR) $(top_srcdir)/src/acor.csv
+ touch $@
patch.apply: $(OOBUILDDIR)/unpack $(STAMP_DIR)/patch.apply
$(STAMP_DIR)/patch.apply : $(top_srcdir)/patches/apply.pl \
@@ -74,7 +77,7 @@ patch.list:
# Build bits:
prebuild : $(STAMP_DIR)/prebuild
-$(STAMP_DIR)/prebuild : $(OOBUILDDIR)/unpack $(STAMP_DIR)/autocorr.apply
+$(STAMP_DIR)/prebuild : $(OOBUILDDIR)/unpack
echo "Creating environment"
mkdir -p $(BUILDDIR)
mkdir -p $(BUILDDIR)/bin
@@ -97,6 +100,7 @@ build.prepare : $(STAMP_DIR)/build_prepared
$(STAMP_DIR)/build_prepared : $(OOBUILDDIR)/unpack \
$(STAMP_DIR)/patch.apply \
$(STAMP_DIR)/artwork.install \
+ $(STAMP_DIR)/autocorr.apply \
$(STAMP_DIR)/build.tools \
$(STAMP_DIR)/prebuild
touch $@