mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
784 B

  1. diff -dur devfsd/GNUmakefile devfsd-p/GNUmakefile
  2. --- devfsd/GNUmakefile 2002-02-19 07:06:43.000000000 +0100
  3. +++ devfsd-p/GNUmakefile 2004-11-04 20:02:02.042183088 +0100
  4. @@ -10,7 +10,7 @@
  5. nsl_libs := $(wildcard /lib/libnsl.so.*)
  6. ifneq ($(nsl_libs),)
  7. -LIBNSL = $(shell for file in /lib/libnsl.so.[0-9]* ; do echo $$file ; done | sort -t . -n -k 2 | head -1)
  8. +LIBNSL = $(shell for file in /lib/libnsl.so.[0-9]* ; do echo $$file ; done | sort -t . -n -k 2 | head -n1)
  9. DEFINES += -DLIBNSL="\"$(LIBNSL)\""
  10. endif
  11. @@ -45,7 +45,7 @@
  12. rpm.spec: version.h
  13. echo "%define version `grep '#define DEVFSD_VERSION' version.h | cut -d'"' -f 2`" > rpm.new
  14. - tail +2 rpm.spec >> rpm.new
  15. + tail -n+2 rpm.spec >> rpm.new
  16. mv rpm.new rpm.spec
  17. Nur in devfsd-p/: GNUmakefile~.