patch-Makefile 1.9 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --- hdparm-9.15.orig/Makefile 2008-12-10 01:14:28.000000000 +0100
  2. +++ hdparm-9.15/Makefile 2011-01-15 20:46:42.000000000 +0100
  3. @@ -13,10 +13,10 @@ oldmandir = $(manprefix)/man
  4. CC ?= gcc
  5. STRIP ?= strip
  6. -CFLAGS := -O2 -W -Wall -Wbad-function-cast -Wcast-align -Wpointer-arith -Wcast-qual -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -fkeep-inline-functions -Wwrite-strings -Waggregate-return -Wnested-externs -Wtrigraphs $(CFLAGS)
  7. +CFLAGS ?= -O2 -W -Wall -Wbad-function-cast -Wcast-align -Wpointer-arith -Wcast-qual -Wshadow -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -fkeep-inline-functions -Wwrite-strings -Waggregate-return -Wnested-externs -Wtrigraphs $(CFLAGS)
  8. #LDFLAGS = -s -static
  9. -LDFLAGS = -s
  10. +LDFLAGS ?= -s
  11. INSTALL = install
  12. INSTALL_DATA = $(INSTALL) -m 644
  13. INSTALL_DIR = $(INSTALL) -m 755 -d
  14. @@ -28,7 +28,6 @@ all: hdparm
  15. hdparm: hdparm.h sgio.h $(OBJS)
  16. $(CC) $(LDFLAGS) -o hdparm $(OBJS)
  17. - $(STRIP) hdparm
  18. hdparm.o: hdparm.h sgio.h
  19. @@ -46,9 +45,9 @@ install: all hdparm.8
  20. if [ -f $(DESTDIR)$(sbindir)/hdparm ]; then rm -f $(DESTDIR)$(sbindir)/hdparm ; fi
  21. if [ -f $(DESTDIR)$(mandir)/man8/hdparm.8 ]; then rm -f $(DESTDIR)$(mandir)/man8/hdparm.8 ;\
  22. elif [ -f $(DESTDIR)$(oldmandir)/man8/hdparm.8 ]; then rm -f $(DESTDIR)$(oldmandir)/man8/hdparm.8 ; fi
  23. - $(INSTALL_PROGRAM) -D hdparm $(DESTDIR)$(sbindir)/hdparm
  24. - if [ -d $(DESTDIR)$(mandir) ]; then $(INSTALL_DATA) -D hdparm.8 $(DESTDIR)$(mandir)/man8/hdparm.8 ;\
  25. - elif [ -d $(DESTDIR)$(oldmandir) ]; then $(INSTALL_DATA) -D hdparm.8 $(DESTDIR)$(oldmandir)/man8/hdparm.8 ; fi
  26. + $(INSTALL_PROGRAM) hdparm $(DESTDIR)$(sbindir)/hdparm
  27. + if [ -d $(DESTDIR)$(mandir) ]; then $(INSTALL_DATA) hdparm.8 $(DESTDIR)$(mandir)/man8/hdparm.8 ;\
  28. + elif [ -d $(DESTDIR)$(oldmandir) ]; then $(INSTALL_DATA) hdparm.8 $(DESTDIR)$(oldmandir)/man8/hdparm.8 ; fi
  29. clean:
  30. -rm -f hdparm $(OBJS) core 2>/dev/null