|
|
Author: pmichaud
Date: Tue Dec 11 07:07:19 2007
New Revision: 23743
Modified:
trunk/languages/eclectus/config/makefiles/root.in
Log:
[eclectus]:
* The 'clean' target of the Makefile ended up being a little
overzealous and would remove everything from src/pmc/ , including
the files that are part of the repo + MANIFEST (causing subsequent
build attempts to break unless the files were somehow restored).
* Now fixed.
Modified: trunk/languages/eclectus/config/makefiles/root.in
==============================================================================
--- trunk/languages/eclectus/config/makefiles/root.in (original)
+++ trunk/languages/eclectus/config/makefiles/root.in Tue Dec 11 07:07:19 2007
@@ -3,6 +3,11 @@
# Makefile for languages/eclectus
+# configuration settings
+BUILD_DIR = @build_dir@
+LOAD_EXT = @load_ext@
+O = @o@
+
# Set up commands
PERL = @perl@
RM_F = @rm_f@
@@ -11,7 +16,6 @@
# Set up directories
PARROT_DYNEXT = @build_dir@/runtime/parrot/dynext
-BUILD_DIR = @build_dir@
PMC_DIR = src/pmc
ECLECTUS_GROUP = $(PMC_DIR)/eclectus_group@load_ext@
|
|