diff options
author | Daichi GOTO <daichi@FreeBSD.org> | 2004-03-16 06:59:28 +0000 |
---|---|---|
committer | Daichi GOTO <daichi@FreeBSD.org> | 2004-03-16 06:59:28 +0000 |
commit | 532a21abcf0c99b06709432b7b0c9426227e7f46 (patch) | |
tree | 3e705c9c132b91d3fd8472e9516944282b920159 /www/resin2/files | |
parent | b7f6bc22defb64d06aa4ab7095748a553e960dbb (diff) |
Notes
Diffstat (limited to 'www/resin2/files')
-rw-r--r-- | www/resin2/files/install.sh | 4 | ||||
-rw-r--r-- | www/resin2/files/patch-Makefile.in | 11 |
2 files changed, 2 insertions, 13 deletions
diff --git a/www/resin2/files/install.sh b/www/resin2/files/install.sh index 36e53c1e9bac..b7497633e60d 100644 --- a/www/resin2/files/install.sh +++ b/www/resin2/files/install.sh @@ -36,13 +36,13 @@ echo Created installation directory %%APP_HOME%% list() { - for dir in doc lib xsl ; do + for dir in %%COPYDIRS%% ; do ( cd %%WRKSRC%% ; find $dir ) done } # Remove all empty dirs -( cd %%WRKSRC%% ; find doc -type d -empty -delete ) +( cd %%WRKSRC%% && find %%COPYDIRS%% -type d -empty -delete ) echo Installing in %%APP_HOME%% list | xargs tar -C %%WRKSRC%% -cf- | tar -C %%APP_HOME%% -xpf- diff --git a/www/resin2/files/patch-Makefile.in b/www/resin2/files/patch-Makefile.in deleted file mode 100644 index 5754ce64ac6d..000000000000 --- a/www/resin2/files/patch-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- src/c/plugin/resin/Makefile.in.orig Fri Feb 14 21:48:23 2003 -+++ src/c/plugin/resin/Makefile.in Wed Mar 5 19:11:12 2003 -@@ -20,7 +20,7 @@ - all : resin libresin.$(SO) - - resin : resin.o $(OBJ) -- $(CC) $(LDFLAGS) -o $@ resin.o $(OBJ) $(PROXY_LIBS) -ldl -+ $(CC) $(LDFLAGS) -o $@ resin.o $(OBJ) $(PROXY_LIBS) - - resin_so : libresin.$(SO) - |