Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3a48ee4

Browse files
committed
MIssed a semi-colon in AC_LINK_FILES for i386_solaris port...
1 parent 80b6206 commit 3a48ee4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/configure

+2-2
Original file line numberDiff line numberDiff line change
@@ -4649,8 +4649,8 @@ fi; done
46494649
EOF
46504650
46514651
cat >> $CONFIG_STATUS <<EOF
4652-
ac_sources="backend/port/tas/i386_solaris.s backend/port/tas.s backend/port/dynloader/${os}.c backend/port/dynloader/${os}.h include/port/${os}.h makefiles/Makefile.${os}"
4653-
ac_dests=" backend/port/dynloader.c include/dynloader.h include/os.h Makefile.port"
4652+
ac_sources="backend/port/tas/i386_solaris.s backend/port/dynloader/${os}.c backend/port/dynloader/${os}.h include/port/${os}.h makefiles/Makefile.${os}"
4653+
ac_dests="backend/port/tas.s backend/port/dynloader.c include/dynloader.h include/os.h Makefile.port"
46544654
EOF
46554655
46564656
cat >> $CONFIG_STATUS <<\EOF

src/configure.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ case "$host_os" in
99
sparc) os=sparc_solaris ;;
1010
i386)
1111
os=i386_solaris
12-
AC_LINK_FILES(backend/port/tas/i386_solaris.s backend/port/tas.s)
12+
AC_LINK_FILES(backend/port/tas/i386_solaris.s, backend/port/tas.s)
1313
TAS=tas.s
1414
AC_SUBST(TAS) ;;
1515
esac ;;

0 commit comments

Comments
 (0)