Bug 158704: removed the workaround of using the non-existent pkg/Makefile

to cause AC_OUTPUT to create the pkg directory.  Create it explicitly.
This commit is contained in:
wtc%netscape.com 2003-01-06 23:34:47 +00:00
Родитель a7c821ee09
Коммит 183d6a449b
2 изменённых файлов: 10 добавлений и 2 удалений

5
nsprpub/configure поставляемый
Просмотреть файл

@ -5638,7 +5638,6 @@ lib/libc/Makefile
lib/libc/include/Makefile
lib/libc/src/Makefile
lib/tests/Makefile
pkg/Makefile
pkg/solaris/Makefile
pkg/solaris/SUNWpr/Makefile
pkg/solaris/SUNWprx/Makefile
@ -5673,6 +5672,10 @@ if test -n "$USE_CPLUS"; then
MAKEFILES="$MAKEFILES pr/src/cplus/Makefile pr/src/cplus/tests/Makefile"
fi
if test ! -d pkg; then
mkdir pkg
fi
trap '' 1 2 15
cat > confcache <<\EOF
# This file is a shell script that caches the results of configure

Просмотреть файл

@ -2421,7 +2421,6 @@ lib/libc/Makefile
lib/libc/include/Makefile
lib/libc/src/Makefile
lib/tests/Makefile
pkg/Makefile
pkg/solaris/Makefile
pkg/solaris/SUNWpr/Makefile
pkg/solaris/SUNWprx/Makefile
@ -2459,4 +2458,10 @@ if test -n "$USE_CPLUS"; then
MAKEFILES="$MAKEFILES pr/src/cplus/Makefile pr/src/cplus/tests/Makefile"
fi
dnl There is no pkg/Makefile.in, so AC_OUTPUT won't create the pkg directory
dnl for us.
if test ! -d pkg; then
mkdir pkg
fi
AC_OUTPUT([$MAKEFILES], [chmod +x config/nspr-config])