Description: Fix builds with error flags for reproducible builds
 Debian now sets flags to make builds fail that use __DATE__ and __TIME__,
 because these builds would be unreproducible. As no one really cares about
 the build date, we just replace it by a version string.
 .
 langford (0.0.20130228-4) unstable; urgency=low
 .
   * Remove build date/time from module greeting, nobody cared anyway
     (Closes: #788272)
Author: Simon Richter <sjr@debian.org>
Bug-Debian: https://bugs.debian.org/788272
Last-Update: 2015-06-13

--- langford-0.0.20130228.orig/langford.c
+++ langford-0.0.20130228/langford.c
@@ -1087,7 +1087,7 @@ Everything done here must be undone in d
 static int __init driver_initial(void) {
 	int		rc;
 
-	printk(KERN_INFO DRIVER_NAME " Loading... (build " __DATE__ " " __TIME__ ")\n");
+	printk(KERN_INFO DRIVER_NAME " Loading... (version 2013-02-28)\n");
 	rc = pci_register_driver(&driver_pci_driver);
 	if (rc) {
 		goto exit_func;
