configure: error: Required header not found: aborting
ERROR: module is write only
rsync error: syntax or usage error (code 1) at main.c(641) [sender=2.6.9]
rsync error: error in rsync protocol data stream (code 12) at /SourceCache/rsync/rsync-35.2/rsync/io.c(452) [receiver=2.6.9]
the full logfile - if it has been succesfully uploaded - can be viewed at:
http://autobuild.puredata.info/auto-build/2009-01-25/logs/2009-01-25_15.56.…
ERROR: module is write only
rsync error: syntax or usage error (code 1) at main.c(641) [sender=2.6.9]
rsync error: error in rsync protocol data stream (code 12) at /SourceCache/rsync/rsync-35.2/rsync/io.c(452) [receiver=2.6.9]
the full logfile - if it has been succesfully uploaded - can be viewed at:
http://autobuild.puredata.info/auto-build/2009-01-25/logs/2009-01-25_15.09.…
ERROR: module is write only
rsync error: syntax or usage error (code 1) at main.c(641) [sender=2.6.9]
rsync error: error in rsync protocol data stream (code 12) at /SourceCache/rsync/rsync-35.2/rsync/io.c(452) [receiver=2.6.9]
the full logfile - if it has been succesfully uploaded - can be viewed at:
http://autobuild.puredata.info/auto-build/2009-01-25/logs/2009-01-25_15.56.…
Revision: 10637
http://pure-data.svn.sourceforge.net/pure-data/?rev=10637&view=rev
Author: eighthave
Date: 2009-01-25 20:50:09 +0000 (Sun, 25 Jan 2009)
Log Message:
-----------
- changed the "Scripts" folder to being a link to "bin" so that when
AppMain.tcl is run from the Pd.app, it'll find the rest of the *.tcl files
without and special tricks.
- test if AppMain.tcl exists, like with pd-devel, if not create a symlink
called AppMain.tcl to pd.tk for pd-vanilla and pd-extended
Modified Paths:
--------------
trunk/packages/darwin_app/Makefile
Modified: trunk/packages/darwin_app/Makefile
===================================================================
--- trunk/packages/darwin_app/Makefile 2009-01-25 20:07:39 UTC (rev 10636)
+++ trunk/packages/darwin_app/Makefile 2009-01-25 20:50:09 UTC (rev 10637)
@@ -119,7 +119,7 @@
fix_install_name "$(PD_APP_CONTENTS)/MacOS/$(WISH_NAME)" Tk
endif # NOT /System
# set up app wrapper
- install -d "$(PD_APP_CONTENTS)/Resources/Scripts"
+ install -d "$(PD_APP_CONTENTS)/Resources"
install -m0644 -p Info.plist "$(PD_APP_CONTENTS)"
install -m0644 -p *.icns "$(PD_APP_CONTENTS)/Resources"
mv "$(PD_APP_CONTENTS)/MacOS/${WISH_NAME}" \
@@ -177,8 +177,11 @@
$(MAKE) -C $(packages_src) $(DEST_PATHS) \
PD_CONFIGURE_FLAGS="--enable-jack --disable-fat" \
pd_install
- cd "$(PD_APP_CONTENTS)/Resources/Scripts" && \
- ln -s ../bin/pd.tk AppMain.tcl
+ install -d "$(PD_APP_CONTENTS)/Resources"
+ cd "$(PD_APP_CONTENTS)/Resources" && \
+ ln -s bin Scripts
+ cd "$(PD_APP_CONTENTS)/Resources" && \
+ test -e AppMain.tcl || ln -s pd.tk AppMain.tcl
# support for Info Panel Plugins mgmt
cd "$(PD_APP_CONTENTS)" && ln -s Resources/extra Plugins
install -p -m0644 org.puredata.pd.default.plist "$(PD_APP_CONTENTS)/"
@@ -258,8 +261,9 @@
-rm -f -- $(PD_APP_CONTENTS)/Plugins $(PD_APP_CONTENTS)/Info.plist
-rm -f -- "$(PD_APP_CONTENTS)/MacOS/$(PD_APP_NAME)"
-rmdir $(PD_APP_CONTENTS)/MacOS
- -rm -f -- $(PD_APP_CONTENTS)/Resources/Scripts/AppMain.tcl
- -rmdir $(PD_APP_CONTENTS)/Resources/Scripts
+ -rm -f -- $(PD_APP_CONTENTS)/Resources/bin/*.tk
+ -rm -f -- $(PD_APP_CONTENTS)/Resources/bin/*.tcl
+ -rm -f -- $(PD_APP_CONTENTS)/Resources/Scripts
-rm -f -- "$(PD_APP_CONTENTS)/Resources/$(WISH_NAME).rsrc" \
"$(PD_APP_CONTENTS)/Resources/pd*.icns"
-rmdir $(PD_APP_CONTENTS)/Resources
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
ERROR: module is write only
rsync error: syntax or usage error (code 1) at main.c(641) [sender=2.6.9]
rsync error: error in rsync protocol data stream (code 12) at /SourceCache/rsync/rsync-35.2/rsync/io.c(452) [receiver=2.6.9]
the full logfile - if it has been succesfully uploaded - can be viewed at:
http://autobuild.puredata.info/auto-build/2009-01-25/logs/2009-01-25_15.09.…
Revision: 10636
http://pure-data.svn.sourceforge.net/pure-data/?rev=10636&view=rev
Author: eighthave
Date: 2009-01-25 20:07:39 +0000 (Sun, 25 Jan 2009)
Log Message:
-----------
replaced second test with a || so that make doesn't catch the 'false' exit condition of the first test
Modified Paths:
--------------
trunk/packages/Makefile
Modified: trunk/packages/Makefile
===================================================================
--- trunk/packages/Makefile 2009-01-25 18:06:50 UTC (rev 10635)
+++ trunk/packages/Makefile 2009-01-25 20:07:39 UTC (rev 10636)
@@ -246,9 +246,8 @@
install -p $(gem_src)/doc/*.* $(manualsdir)/$(GEM_NAME)
install -d $(manualsdir)/$(GEM_NAME)/manual
# in Gem 0.92, $(gem_src)/manual moved to $(gem_src)/doc/manual
- test -d $(gem_src)/manual && \
- install -p $(gem_src)/manual/*.* $(manualsdir)/$(GEM_NAME)/manual
- test -d $(gem_src)/doc/manual && \
+ (test -d $(gem_src)/manual && \
+ install -p $(gem_src)/manual/*.* $(manualsdir)/$(GEM_NAME)/manual) || \
install -p $(gem_src)/doc/manual/*.* $(manualsdir)/$(GEM_NAME)/manual
for dir in $(shell ls -1 $(gem_src)/examples | grep -v CVS); do \
echo "installing $$dir"; \
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.