diff --git a/base/configure b/base/configure
index 3b081e3..b312027 100755
a
|
b
|
prefix=$oldprefix |
11689 | 11689 | |
11690 | 11690 | |
11691 | 11691 | # Output |
11692 | | ac_config_files="$ac_config_files Makefile Mk/macports.autoconf.mk doc/prefix.mtree doc/macosx.mtree doc/macports.conf src/Makefile src/macports1.0/macports_autoconf.tcl src/tclobjc1.0/Makefile src/port1.0/port_autoconf.tcl src/registry1.0/registry_autoconf.tcl src/programs/Makefile src/macports1.0/macports_fastload.tcl" |
| 11692 | ac_config_files="$ac_config_files Makefile Mk/macports.autoconf.mk doc/prefix.mtree doc/macosx.mtree doc/macports.conf src/Makefile src/macports1.0/macports_autoconf.tcl src/tclobjc1.0/Makefile src/port1.0/port_autoconf.tcl src/registry1.0/registry_autoconf.tcl src/programs/Makefile src/macports1.0/macports_fastload.tcl src/port/port src/port/portindex src/port/portmirror" |
11693 | 11693 | |
11694 | 11694 | |
11695 | 11695 | cat >confcache <<\_ACEOF |
… |
… |
do |
12259 | 12259 | "src/registry1.0/registry_autoconf.tcl") CONFIG_FILES="$CONFIG_FILES src/registry1.0/registry_autoconf.tcl" ;; |
12260 | 12260 | "src/programs/Makefile") CONFIG_FILES="$CONFIG_FILES src/programs/Makefile" ;; |
12261 | 12261 | "src/macports1.0/macports_fastload.tcl") CONFIG_FILES="$CONFIG_FILES src/macports1.0/macports_fastload.tcl" ;; |
| 12262 | "src/port/port") CONFIG_FILES="$CONFIG_FILES src/port/port" ;; |
| 12263 | "src/port/portindex") CONFIG_FILES="$CONFIG_FILES src/port/portindex" ;; |
| 12264 | "src/port/portmirror") CONFIG_FILES="$CONFIG_FILES src/port/portmirror" ;; |
12262 | 12265 | |
12263 | 12266 | *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 |
12264 | 12267 | echo "$as_me: error: invalid argument: $ac_config_target" >&2;} |
diff --git a/base/configure.ac b/base/configure.ac
index 4249844..b388f2f 100644
a
|
b
|
AC_CONFIG_FILES([ |
281 | 281 | src/registry1.0/registry_autoconf.tcl |
282 | 282 | src/programs/Makefile |
283 | 283 | src/macports1.0/macports_fastload.tcl |
| 284 | src/port/port |
| 285 | src/port/portindex |
| 286 | src/port/portmirror |
284 | 287 | ]) |
285 | 288 | |
286 | 289 | AC_OUTPUT |
diff --git a/base/src/port/Makefile b/base/src/port/Makefile
index 228f585..2638fab 100644
a
|
b
|
INSTALLDIR= ${DESTDIR}${prefix} |
2 | 2 | TOPSRCDIR= ../.. |
3 | 3 | SCRIPTS= portmirror portindex port |
4 | 4 | |
5 | | edit = sed \ |
6 | | -e 's,@TCLSH\@,$(TCLSH),g' \ |
7 | | -e 's,@TCL_PACKAGE_DIR\@,$(TCL_PACKAGE_DIR),g' |
8 | | |
9 | 5 | include ../../Mk/macports.autoconf.mk |
10 | 6 | |
11 | 7 | all: ${SCRIPTS} |
12 | 8 | |
13 | | portmirror: portmirror.tcl |
14 | | ${edit} portmirror.tcl > $@ |
15 | | |
16 | | portindex: portindex.tcl |
17 | | ${edit} portindex.tcl > $@ |
18 | | |
19 | | port: port.tcl |
20 | | ${edit} port.tcl > $@ |
21 | | |
22 | 9 | mkdirs: |
23 | 10 | cat ../../doc/prefix.mtree | $(MTREE) -U -d -e -p ${INSTALLDIR} > /dev/null |
24 | 11 | |