]> git.lyx.org Git - lyx.git/blobdiff - src/support/copy.cpp
fix warning on possibly(?) unused precompiled headers due to different -fPic settings...
[lyx.git] / src / support / copy.cpp
index 15b674ccdcce7d1a9da52ceaa644c973aa0a0ed6..051687095499f0616cd82cf7abcf4be1c751f774 100644 (file)
@@ -38,9 +38,7 @@ bool lyx::support::chmod(FileName const & file, unsigned long int mode)
        if (::chmod(file.toFilesystemEncoding().c_str(), mode_t(mode)) != 0)
                return false;
 #else
-# ifdef WITH_WARNINGS
-#  warning "File permissions are ignored on this system."
-# endif
+       // FIXME: "File permissions are ignored on this system."
 #endif
        return true;
 }