Keep Makefile.am from double-installing detail/Clock.h
authorAlexander Böhn / FI <fish2000@gmail.com>
Thu, 11 Jun 2015 21:05:37 +0000 (14:05 -0700)
committerSara Golemon <sgolemon@fb.com>
Thu, 11 Jun 2015 21:50:32 +0000 (14:50 -0700)
commit259337dcd5683e22fb100acdf572f9df40ca26c8
tree6a38562ea0e569efb88db06e99a6e7b319849232
parent36ca845043259977fac1e8cddec7427d711e1126
Keep Makefile.am from double-installing detail/Clock.h

Summary: On non-Linux systems, the autotools-based build system conditionally appends `detail/Clock.h` to `libfollybase_la_SOURCES` – even though that file is in there statically no matter what (as per [line 46](https://github.com/facebook/folly/blob/master/folly/Makefile.am#L46)), which causes the `install` command to error out trying to install the file twice, during `make install`… this patch takes out the conditional append.
Closes #201

Reviewed By: @yfeldblum

Differential Revision: D2148004

Pulled By: @sgolemon
folly/Makefile.am