There is a bug in qx.manager.object.SingletonManager line 80:
qx.manager.object.SingletonManager has no properties.
And here we go with the patch against rev 3713 for removing -v
option for rm in the Makefiles:
Sebastian Werner schrieb:
Dietrich Streifert schrieb:
make realclean did not help. I had to delete manually frontend/.cache.
"make distclean" (instead of realclean) must be executed. At it must be
in the frontend folder. Then it should work. I've missed this detail.
Now I got it build. Thank you Sebastian.
While trying this I see that you use the -v option with rm which is not
available on every platform (I'm using solaris 10). So would you
consider removing the -v options from the Makefiles?
Really? Interesting. Mhh, yes. Maybe you can support me with a patch?
Thanks.
Sebastian
Thank you.
Sebastian Werner schrieb:
Ha, well.
Hint: Please delete the frontend/.cache directory or do a "make realclean".
Should help!
Sebastian
Sebastian Werner schrieb:
Hi!
It seems to work here, with revision 3713. Is this the complete
traceback output? Have you any custom classes used? If not, in what
directory does this error occour (api, framework, demo)?
Thanks.
Sebastian
Dietrich Streifert schrieb:
Hello List,
somehow the make process got broken between rev 3707 and 3713. I get the
followin error:
DETECTION OF AUTO DEPENDENCIES:
----------------------------------------------------------------------------
* Collecting IDs...
* Detecting dependencies...
Traceback (most recent call last):
File "../framework/tool/generate/generate.py", line 794, in ?
main()
File "../framework/tool/generate/generate.py", line 274, in main
argparser(sys.argv[1:])
File "../framework/tool/generate/generate.py", line 258, in argparser
(fileDb, moduleDb) = load(options)
File "../framework/tool/generate/generate.py", line 389, in load
loadtimeDeps = fileDb[fileEntry]["loadtimeDeps"]
Python version is:
Python 2.3.5 (#1, Nov 30 2005, 10:43:01) [C] on sunos5
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
--
Mit freundlichen Grüßen
Dietrich Streifert
Visionet GmbH
------------------------------------------------------------------------
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
------------------------------------------------------------------------
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
--
Mit freundlichen Grüßen
Dietrich Streifert
Visionet GmbH
|
Index: frontend/demo/Makefile
===================================================================
--- frontend/demo/Makefile (revision 3713)
+++ frontend/demo/Makefile (working copy)
@@ -30,13 +30,13 @@
###################################################################################
clean:
- @rm -fv source/script/qx.js source/script/layout.js
build/script/layout.js
+ @rm -f source/script/qx.js source/script/layout.js
build/script/layout.js
realclean: clean
- @rm -rfv build
+ @rm -rf build
distclean: realclean
- @find . -name "*~" -o -name "*.bak" -o -name "*.old" | xargs rm -rfv
+ @find . -name "*~" -o -name "*.bak" -o -name "*.old" | xargs rm -rf
Index: frontend/api/Makefile
===================================================================
--- frontend/api/Makefile (revision 3713)
+++ frontend/api/Makefile (working copy)
@@ -32,14 +32,14 @@
###################################################################################
clean:
- rm -fv source/script/api.js source/script/data.js
- rm -fv build/script/api.js build/script/data.js
+ rm -f source/script/api.js source/script/data.js
+ rm -f build/script/api.js build/script/data.js
realclean: clean
- rm -rfv build source/script
+ rm -rf build source/script
distclean: realclean
- @find . -name "*~" -o -name "*.bak" -o -name "*.old" | xargs rm -rfv
+ @find . -name "*~" -o -name "*.bak" -o -name "*.old" | xargs rm -rf
Index: frontend/Makefile
===================================================================
--- frontend/Makefile (revision 3713)
+++ frontend/Makefile (working copy)
@@ -59,4 +59,4 @@
$(MAKE) -C demo distclean
$(MAKE) -C framework distclean
- @rm -rfv .cache
+ @rm -rf .cache
Index: frontend/framework/Makefile
===================================================================
--- frontend/framework/Makefile (revision 3713)
+++ frontend/framework/Makefile (working copy)
@@ -29,14 +29,14 @@
###################################################################################
clean:
- @rm -fv build/script/qx.js source/script/qx.js
+ @rm -f build/script/qx.js source/script/qx.js
realclean: clean
- @rm -rfv build source/script
+ @rm -rf build source/script
distclean: realclean
- @rm -fv tool/generate/*.pyc
- @find . -name "*~" -o -name "*.bak" -o -name "*.old" | xargs rm -rfv
+ @rm -f tool/generate/*.pyc
+ @find . -name "*~" -o -name "*.bak" -o -name "*.old" | xargs rm -rf
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel