diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-09-18 00:23:52 +0000 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-09-18 00:23:52 +0000 |
commit | 00ed795ff40a02221c6086ec4f95b15266a27eaa (patch) | |
tree | 4b057ef6dca253909d8962ae425c14f558c7c77d /editors/lpe | |
parent | b31b6ad9dadc43cda4c4ec2d89468a5c6c963a62 (diff) | |
download | FreeBSD-ports-00ed795ff40a02221c6086ec4f95b15266a27eaa.zip FreeBSD-ports-00ed795ff40a02221c6086ec4f95b15266a27eaa.tar.gz |
sh(1) is not bash on FreeBSD so 'source' isn't a command. Change
it to '.'
Submitted by: steve
Diffstat (limited to 'editors/lpe')
-rw-r--r-- | editors/lpe/files/patch-ae | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/editors/lpe/files/patch-ae b/editors/lpe/files/patch-ae index 9995553..9186e41 100644 --- a/editors/lpe/files/patch-ae +++ b/editors/lpe/files/patch-ae @@ -1,5 +1,5 @@ ---- Makefile.in.orig Sat Jul 3 19:33:57 1999 -+++ Makefile.in Mon Jul 5 10:28:35 1999 +--- Makefile.in.orig Sat Jul 3 21:33:57 1999 ++++ Makefile.in Fri Sep 17 17:59:58 1999 @@ -108,8 +108,8 @@ lpe_LDADD = @INTLLIBS@ @INTLOBJS@ @DL_LIB@ @SLANG_LIB@ lpe_LDFLAGS = @lpe_LDFLAGS@ @@ -11,3 +11,12 @@ liblpedir = $(libdir)/lpe +@@ -650,7 +650,7 @@ + install-data-hook: + list="@MODES@" ; \ + for mode in $$list; do \ +- ( cd $(DESTDIR)$(liblpedir) ; source $$mode ; \ ++ ( . $(srcdir)/$$mode ; cd $(DESTDIR)$(liblpedir) ; \ + newname="`echo $$mode | sed -e 's/lib\(.*\)\.la/\1.so/'`" ; \ + test -f $$newname && rm -f $$newname ; \ + ln -s $$dlname $$newname ) ; \ |