summaryrefslogtreecommitdiff
path: root/lang/squeak-dev/files/patch-platforms__unix__config__inisqueak.in
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2008-11-19 10:43:57 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2008-11-19 10:43:57 +0000
commitf982be45e81588a27383cd1a3eb12789b8498904 (patch)
tree07be283d015b2c39f95e655cb7328ff355bc47fa /lang/squeak-dev/files/patch-platforms__unix__config__inisqueak.in
parent- Fix modes of the temp directory [1] (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_6_4_0'.release/6.4.0
Diffstat (limited to 'lang/squeak-dev/files/patch-platforms__unix__config__inisqueak.in')
-rw-r--r--lang/squeak-dev/files/patch-platforms__unix__config__inisqueak.in23
1 files changed, 0 insertions, 23 deletions
diff --git a/lang/squeak-dev/files/patch-platforms__unix__config__inisqueak.in b/lang/squeak-dev/files/patch-platforms__unix__config__inisqueak.in
deleted file mode 100644
index f756bee6026e..000000000000
--- a/lang/squeak-dev/files/patch-platforms__unix__config__inisqueak.in
+++ /dev/null
@@ -1,23 +0,0 @@
---- platforms/unix/config/inisqueak.in.org Mon Feb 6 15:10:05 2006
-+++ platforms/unix/config/inisqueak.in Mon Feb 6 15:10:58 2006
-@@ -99,7 +99,7 @@
- exit 1
- }
-
--if ${test} \( -f squeak.image \) -a \( -f squeak.changes \) -a \( -e ${SOURCES} \)
-+if ${test} \( -f squeak.image \) -a \( -e ${SOURCES} \)
- then
- if ${startup}; then
- if test ! -x ${SQUEAK}; then
-@@ -200,7 +200,10 @@
-
- install "ln -s" "${imgdir}/${SOURCES}" " " "${SOURCES}"
- install "gunzip -dc" "${imgdir}/${IMAGE}" ">" "squeak.image"
--install "gunzip -dc" "${imgdir}/${CHANGES}" ">" "squeak.changes"
-+# For SqueakPlugin.image which don't have changes file.
-+if test -e "${imgdir}/${CHANGES}"; then
-+ install "gunzip -dc" "${imgdir}/${CHANGES}" ">" "squeak.changes"
-+fi
-
- if ${startup}; then
- if test ! -x ${SQUEAK}; then