diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-08-31 05:33:00 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-08-31 05:33:00 +0000 |
commit | 85a386f754c64cbf33715ff6349dc820841a37ff (patch) | |
tree | da7e321d0f701b35839d6d657f22108df4c110f2 | |
parent | cb36f39856c1faa1729dffe5ebbc5a4a2101b507 (diff) |
changed MacOS X pkg install group from admin to staff
svn path=/trunk/externals/zexy/; revision=903
-rw-r--r-- | src/makefile.darwin | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/makefile.darwin b/src/makefile.darwin index 71cc2c9..935c981 100644 --- a/src/makefile.darwin +++ b/src/makefile.darwin @@ -125,9 +125,9 @@ darwin_pkg_clean: darwin_pkg: all darwin_pkg_clean darwin_pkg_license darwin_pkg_welcome # set up installroot dir test -d installroot/pd/doc/5.reference || mkdir -p installroot/pd/doc/5.reference - install -m644 --group=admin ../examples/*.* installroot/pd/doc/5.reference + install -m644 --group=staff ../examples/*.* installroot/pd/doc/5.reference test -d installroot/pd/extra || mkdir -p installroot/pd/extra - install -m644 --group=admin *.pd_darwin installroot/extra + install -m644 --group=staff *.pd_darwin installroot/extra cp -f ../pd-zexy.info ../$(PACKAGE_NAME).info # delete cruft -find installroot -name .DS_Store -delete @@ -147,7 +147,7 @@ darwin_altpkg: all darwin_pkg_clean darwin_pkg_license darwin_pkg_welcome test -d installroot/Help || mkdir -p installroot/Help -cp ../examples/* installroot/Help test -d installroot/Externals || mkdir -p installroot/Externals - install -m644 *.pd_darwin --group=admin installroot/Externals + install -m644 *.pd_darwin --group=staff installroot/Externals sed -e 's/\/usr\/local\/lib/\/Library\/Pd/' ../pd-zexy.info \ | sed -e 's/MSP standard paths/MacOS X-style Paths/' \ > ../$(PACKAGE_NAME)-alt.info |