Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
cf33de27
Kaydet (Commit)
cf33de27
authored
Ara 20, 2011
tarafından
James C
Kaydeden (comit)
Norbert Thiebaud
Ara 20, 2011
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix gmake detection for MacOSX
üst
b7191951
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
configure.in
configure.in
+14
-2
No files found.
configure.in
Dosyayı görüntüle @
cf33de27
...
...
@@ -2705,7 +2705,19 @@ if test "$_make_longver" -ge "038200" ; then
elif test "$_make_longver" -ge "038100" ; then
AC_MSG_RESULT([$GNUMAKE $_make_version])
AC_MSG_CHECKING([for GNU make bug 20033])
TESTGMAKEBUG20033=`mktemp -d`
dnl
dnl FIXME: mktemp takes different arguments on different platforms:
dnl http://stackoverflow.com/questions/2792675/how-portable-is-mktemp1
dnl
dnl -t means either 'use $TMPDIR' (OK) or 'the following is a template'.
dnl and without 'the following is a template', a following template
dnl is allowed, so this *may* work on *most* platforms
dnl
TESTGMAKEBUG20033=`mktemp -d -t MakefileXX`
SHA1SUM=sha1sum
if test "$_os" = "Darwin"; then
SHA1SUM=shasum
fi
cat > $TESTGMAKEBUG20033/Makefile << EOF
A := \$(wildcard *.a)
...
...
@@ -2728,7 +2740,7 @@ define d2
endef
%.b : %.a
\$(eval CHECKSUM := \$(word 1,\$(shell cat \$^ |
sha1sum
))) \$(if \$(wildcard \$(CACHEDIR)/\$(CHECKSUM)),\
\$(eval CHECKSUM := \$(word 1,\$(shell cat \$^ |
$SHA1SUM
))) \$(if \$(wildcard \$(CACHEDIR)/\$(CHECKSUM)),\
\$(call d1,\$(CHECKSUM)),\
\$(call d2,\$(CHECKSUM)))
EOF
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment