diff options
author | jmz <jmz@FreeBSD.org> | 1995-09-19 07:36:18 +0800 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 1995-09-19 07:36:18 +0800 |
commit | 116272daf8ad382f6825d632afc07743e6b33d7c (patch) | |
tree | ed69ceb1cd8e9abbf4703175cb6dedff0511790c /textproc | |
parent | c804527d5b3bdb2821414d551b48950c4483f5f8 (diff) | |
download | freebsd-ports-gnome-116272daf8ad382f6825d632afc07743e6b33d7c.tar.gz freebsd-ports-gnome-116272daf8ad382f6825d632afc07743e6b33d7c.tar.zst freebsd-ports-gnome-116272daf8ad382f6825d632afc07743e6b33d7c.zip |
A hack to avoid recompiling everything during install
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/ispell/files/patch-ab | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/textproc/ispell/files/patch-ab b/textproc/ispell/files/patch-ab new file mode 100644 index 000000000000..dbe56b3a2d26 --- /dev/null +++ b/textproc/ispell/files/patch-ab @@ -0,0 +1,37 @@ +*** Makefile~ Mon Jan 23 19:28:24 1995 +--- Makefile Tue Sep 19 00:46:41 1995 +*************** +*** 490,496 **** + local.h: + set +e; [ -r local.h ] || cp local.h.samp local.h + +! msgs.h: config.sh FRC + @. ./config.sh; \ + set $(SHELLDEBUG); \ + set +e; \ +--- 490,496 ---- + local.h: + set +e; [ -r local.h ] || cp local.h.samp local.h + +! msgs.h: config.sh + @. ./config.sh; \ + set $(SHELLDEBUG); \ + set +e; \ +*************** +*** 504,510 **** + else \ + set -x; \ + rm -f msgs.h; ln $$msgs msgs.h || cp $$msgs msgs.h; \ +! fi + + FRC: + +--- 504,511 ---- + else \ + set -x; \ + rm -f msgs.h; ln $$msgs msgs.h || cp $$msgs msgs.h; \ +! fi; \ +! touch msgs.h + + FRC: + |