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.

29 lines
763 B

  1. --- ./Makefile.orig 2004-09-12 02:09:44.268271456 +0200
  2. +++ ./Makefile 2004-09-12 02:10:01.125708736 +0200
  3. @@ -22,7 +22,7 @@
  4. auto_home.c: \
  5. auto-str conf-home
  6. - ./auto-str auto_home `head -1 conf-home` > auto_home.c
  7. + ./auto-str auto_home `head -n 1 conf-home` > auto_home.c
  8. auto_home.o: \
  9. compile auto_home.c
  10. @@ -91,7 +91,7 @@
  11. choose: \
  12. warn-auto.sh choose.sh conf-home
  13. cat warn-auto.sh choose.sh \
  14. - | sed s}HOME}"`head -1 conf-home`"}g \
  15. + | sed s}HOME}"`head -n 1 conf-home`"}g \
  16. > choose
  17. chmod 755 choose
  18. @@ -166,7 +166,7 @@
  19. warn-auto.sh conf-ld
  20. ( cat warn-auto.sh; \
  21. echo 'main="$$1"; shift'; \
  22. - echo exec "`head -1 conf-ld`" \
  23. + echo exec "`head -n 1 conf-ld`" \
  24. '-o "$$main" "$$main".o $${1+"$$@"}' \
  25. ) > load
  26. chmod 755 load